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/with-dynamic-import/pages/about.js
2017-04-17 21:03:40 +05:30

13 lines
216 B
JavaScript

import Header from '../components/Header'
import Counter from '../components/Counter'
const About = () => (
<div>
<Header />
<p>This is the about page.</p>
<Counter />
</div>
)
export default About