rsnext/examples/with-orbit-components/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

13 lines
293 B
JavaScript

import React from 'react'
import { Alert, Illustration } from '@kiwicom/orbit-components'
export default () => {
return (
<React.Fragment>
<Alert type='success' spaceAfter='large'>
It Works!
</Alert>
<Illustration name='Success' />
</React.Fragment>
)
}