[](https://github.com/landbot-org/lui/blob/main/LICENSE) [](https://www.npmjs.com/package/@landbot/lui) [

src="https://raw.githubusercontent.com/storybooks/brand/master/badge/badge-storybook.svg" alt="Stoybook link" />
A UI component library is a robust set of ready-made UI components such as buttons, inputs, dialogs, scrolling lists,
and more.
``shell`
npm install
`shell`
npm run storybook
or
npm start
For more information about Storybook, please visit the Storybook website.
Component tests are written using Jest and React Testing Library.
`shell`
npm test
Package is built using Rollup. The build is configured to generate an ES module
(esm) package.
`shell`
npm run build
`shell`
npm install @landbot/lui
Import on the root of the project
`js`
import { ThemeProvider } from 'styled-components';
import { theme } from '@landbot/lui';
Wrap the project with the provider
`js``
const App = () => {
return (
//react app
);
};