rsnext/examples/with-orbit-components/pages/index.js
2020-05-18 17:44:18 -04:00

13 lines
303 B
JavaScript

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