rsnext/examples/with-jest-flow/pages/index.js
Sam Washburn 70aa2b5821 Merged with-jest and with-flow examples into a new with-jest-flow example. (#7224)
* Merged with-jest and with-flow examples into with-jest-flow.

* Removed semicolons linter was complaining about.
2019-05-08 14:41:34 +02:00

9 lines
145 B
JavaScript

// @flow
import React from 'react'
import Page from '../components/Page'
export default () => (
<Page>
<div>Hello World</div>
</Page>
)