Speed up your development process by using the UI components provided by the Lapilli UI.
It contains different packages:
- Components: a library of components you can use in your app to create your layout.
- Styles: the styling solution used by Lapilli UI that allows you to style components with different themes.
- Date: a date module to easily handle dates.
- BlockEditor: a library to use the WordPress Gutenberg block editor through the BlockEditor component.
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.
Enjoy it! 😉