rsnext/examples/layout-component/pages/index.js
Alex Moldovan 07f717061f Added layout component example (#560)
* added layout component example

* coding style fixes

* trailing spaces removed

* updated README file

* added layout example in docs

* moved .babelrc so that it handles all projects from the examples folder
2017-01-05 13:03:36 -08:00

7 lines
119 B
JavaScript

import Layout from '../components/layout'
export default () => (
<Layout>
<div>Hello World.</div>
</Layout>
)