Skip to content

Latest commit

 

History

History
42 lines (31 loc) · 1.21 KB

README.md

File metadata and controls

42 lines (31 loc) · 1.21 KB

@habx/ui-core

CircleCI Version Size License

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>

  )
}

documentation

Test all our components in our Storybook