@landbot/lui
v7.14.2
Published
[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/landbot-org/lui/blob/main/LICENSE) [![npm version](https://img.shields.io/npm/v/@landbot/lui)](https://www.npmjs.com/package/@landbot/lui) [![Build](https://github.c
Downloads
1,335
Readme
LUI (Landbot UI) ✨
What is a UI components library?
A UI component library is a robust set of ready-made UI components such as buttons, inputs, dialogs, scrolling lists, and more.
Preparation and prerequisites
npm install
Start the component explorer
npm run storybook
For more information about Storybook, please visit the Storybook website.
Test
Component tests are written using Jest and React Testing Library.
npm run test
Build
Package is built using Rollup. The build is configured to generate an ES module
(esm
) package.
npm run build
Installation and usage
npm install @landbot/lui
Import on the root of the project
import { ThemeProvider } from 'styled-components';
import { theme } from '@landbot/lui';
Wrap the project with the provider
const App = () => {
return (
<ThemeProvider theme={theme}>
<div className="App">//react app</div>
</ThemeProvider>
);
};