Slide 42
Slide 42 text
const CreateAccount = () => ({
type: 'div',
props: {
children: [{
type: 'p',
props: {
children: ‘Welcome to Nubank!’
}
}, {
type: ConfirmButton,
props: {
children: ‘Yahooo!'
}
}, {
type: Button,
props: {
color: 'red',
children: 'Cancel'
}
}]
});