@habx/ui-core
v6.21.0
Published
HABX Design System
Downloads
40
Readme
Design System used on all the applications developed by HABX
Installation
npm i @habx/ui-core
Add Providers
App.ts
import { Provider as DesignSystemProvider, ThemeProvider } from '@habx/ui-core'
const App: React.FunctionComponent = ({ children }) => {
return (
<ThemeProvider theme={theme}>
<DesignSystemProvider>
{children}
</DesignSystemProvider>
</ThemeProvider>
)
}
Test all our components in our Storybook