mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
07f717061f
* 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
8 lines
133 B
JavaScript
8 lines
133 B
JavaScript
import Layout from '../components/layout'
|
|
|
|
export default () => (
|
|
<Layout title='Contact us'>
|
|
<div>Contact</div>
|
|
</Layout>
|
|
)
|