Slide 43
Slide 43 text
React.createElement(Wrapper, null,
React.createElement('h1', { className: 'heading' }, 'Hello World')
)
// will return something like
{
type: Wrapper,
props: null,
children: [{
type: 'h1',
props: {
className: 'heading'
},
children: ['Hello World']
}]
}