rsnext/test/integration/flying-shuttle/components/something.js
Joe Haddad 510815a7ac
Add Flying Shuttle tests (#7000)
* Add Flying Shuttle tests

* Test second version of server

* Finish first version of tests

* Apply suggestions from code review

Co-Authored-By: Timer <timer150@gmail.com>

* Apply suggestions from code review

Co-Authored-By: Timer <timer150@gmail.com>
2019-04-10 17:08:19 -04:00

10 lines
180 B
JavaScript

import dynamic from 'next/dynamic'
const DynamicComponent = dynamic(() => import('./something2'))
export default () => (
<>
<div>lol</div>
<DynamicComponent />
</>
)