2020-01-13 12:54:17 +01:00
|
|
|
import "../style.css"
|
2020-01-13 16:20:19 +01:00
|
|
|
import Header from './components/Header'
|
2020-01-13 12:54:17 +01:00
|
|
|
|
2020-01-13 16:20:19 +01:00
|
|
|
const Index = props => (
|
2020-01-13 12:54:17 +01:00
|
|
|
<div>
|
2020-01-13 16:20:19 +01:00
|
|
|
<Header/>
|
|
|
|
<p>Hello Next.js</p>
|
2020-01-13 12:54:17 +01:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
|
|
|
|
export default Index;
|