rsnext/examples/with-orbit-components/pages/index.js

14 lines
293 B
JavaScript
Raw Normal View History

2019-03-27 01:49:12 +01:00
import React from 'react'
import { Alert, Illustration } from '@kiwicom/orbit-components'
export default () => {
return (
<React.Fragment>
<Alert type='success' spaceAfter='large'>
It Works!
</Alert>
2019-03-27 01:49:12 +01:00
<Illustration name='Success' />
</React.Fragment>
)
}