@tactics/lokaal-loket
v1.1.6
Published
Component library for Lokaal Loket project
Downloads
4,445
Readme
LLK
This is the React UI Kit for LLK. It is a collection of components that can be used to build applications for LLK. All available components are listed in the sidebar. Click on a component to view its documentation.
Installation
To install the UI Kit, run the following command:
pnpm add @tactics/lokaal-loketUsage
To use a component, import it from the UI Kit and use it in your application. For example:
import Screen from "@tactics/lokaal-loket";Basic Setup
To ensure all components work as expected, make sure to wrap your application in the following component. In the storybook this is done inside the preview.tsx, so you don't have to worry about it.
const App = () => {
return (
<Screen>
<MyApp />
</Screen>
);
};