Design System and React Components.
npm i @koupr/ui
Koupr UI is meant to work on top of Chakra UI: https://v2.chakra-ui.com/getting-started
import { theme } from '@koupr/ui'
import { createRoot } from 'react-dom/client'
import App from './App'
createRoot(document.getElementById('root') as HTMLElement).render(
<ChakraProvider theme={theme}>
<App />
</ChakraProvider>,
)
- Versions with odd minor numbers like:
1.11
and2.3
are LTS releases. - Versions with even minor numbers like:
1.10
and2.2
are not meant to be relied upon in the long term.
Build:
npm run build
Watch:
npm run watch
Koupr UI is released under the MIT License.