mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
16 lines
353 B
JavaScript
16 lines
353 B
JavaScript
|
import React from 'react'
|
||
|
import Header from '../components/Header'
|
||
|
import Counter from '../components/Counter'
|
||
|
import withImport from '../lib/with-import'
|
||
|
|
||
|
const DynamicComponent = withImport(import('../components/hello'))
|
||
|
|
||
|
export default () => (
|
||
|
<div>
|
||
|
<Header />
|
||
|
<DynamicComponent />
|
||
|
<p>HOME PAGE is here!</p>
|
||
|
<Counter />
|
||
|
</div>
|
||
|
)
|