rsnext/examples/with-grommet/pages/index.js
TodorTotev 7cf3c3d28d
Feat/remove redundant imports from examples (#13062)
The issue is related to [12964](https://github.com/zeit/next.js/issues/12964)

Let me know if there are any changes you want me to make.

Affected examples:

**with-glamor
with-graphql-hooks
with-graphql-react
with-grommet
with-http2
with-jest
with-cookie-auth-fauna
with-context-api
with-cerebral
with-aphrodite
with-apollo-and-redux
basic-css
with-carbon-components
amp-first**

I would love to help more, so let me know if there is anything specific I can contribute to.
2020-05-20 17:50:03 +00:00

13 lines
350 B
JavaScript

import { Anchor, Box, Heading, Paragraph } from 'grommet'
export default function Home() {
return (
<Box align="center" margin="large">
<Heading>Grommet is awesome!</Heading>
<Paragraph>
Find out more at{' '}
<Anchor href="https://v2.grommet.io/">https://v2.grommet.io/</Anchor>
</Paragraph>
</Box>
)
}