This is the first post!
Code is highlighted by default.
const StatelessComponent = (props) => {
return (
<div>
I‘m a stateless component that accepts children
{ props.children }
</div>
)
}
// ...
return (
<StatelessComponent>
Example of child
</StatelessComponent>
)