rsnext/examples/with-loading/pages/index.js
Henrik Wenz 4a1215b701 Refactor with-loading example (#8560)
* Remove inline styles in favor of styled-jsx

* Remove getInitialProps from app

Allow automatic static optimization

* Remove _document.js

We really don’t need it in this example

* Migrate Class to Function Components
2019-09-02 13:05:29 -05:00

5 lines
99 B
JavaScript

import React from 'react'
const IndexPage = () => <p>Hello Next.js!</p>
export default IndexPage