1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00
next.js/examples/layout-component/pages/contact.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

8 lines
133 B
JavaScript

import Layout from '../components/layout'
export default () => (
<Layout title='Contact us'>
<div>Contact</div>
</Layout>
)