rsnext/test/integration/basic/pages/custom-extension.jsx
Ibrahim Ansari 99fb191286 Add custom-server-typescript example (see #3694) (#3838)
* Add custom-server-typescript example (see #3694)

* Fix linting errors in custom-server-typescript

* Provide proper arguments to ts-node.

* Fix import and fix all linting errors.

* Use import in server as well.

* Update nodemon.json
2018-02-22 16:29:47 +01:00

6 lines
147 B
JavaScript

import {World} from '../components/world'
import {Hello} from '../components/hello.jsx'
export default () => (
<div><Hello /> <World /></div>
)