rsnext/examples/with-grommet/pages/index.js
Corbin Crutchley e03266008c form handler example: Update deps and fix build from dep update (#6732)
* form handler example: Update deps and fix build from dep update

* Ran lint error fixers

* Fixes errors that occur when commit occurs

* Commit linter fixes
2019-03-27 16:12:45 -04:00

12 lines
337 B
JavaScript

import React from 'react'
import { Anchor, Box, Heading, Paragraph } from 'grommet'
export default () => (
<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>
)