Design System used on all the applications developed by HABX
npm i @concrete-design/core
import { Provider as DesignSystemProvider, ThemeProvider } from '@concrete-design/core'
const App: React.FunctionComponent = ({ children }) => {
return (
<ThemeProvider theme={theme}>
<DesignSystemProvider>
{children}
</DesignSystemProvider>
</ThemeProvider>
)
}
Test all our components in our Storybook