A library of components you can use in your app to create your layout.
Install the module
npm install @lapilli-ui/components @emotion/react @emotion/styled --save
Here an example of a basic app using the Button component.
import * as React from 'react';
import { Button } from '@lapilli-ui/components';
function App() {
return <Button variant="outlined" color="secondary">Click me</Button>;
}
See the main Lapilli UI website for the list of available components, API and usage documentation.