phenomic
Version:
Modern website generator based on the React and Webpack ecosystem.
29 lines (23 loc) • 392 B
Markdown
title: First Post, no hero.
date: 2016-01-22
layout: Post
This is the first post!
Code is highlighted by default.
```js
const StatelessComponent = (props) => {
return (
<div>
I‘m a stateless component that accepts children
{ props.children }
</div>
)
}
// ...
return (
<StatelessComponent>
Example of child
</StatelessComponent>
)
```