Skip to content

Latest commit

 

History

History
54 lines (36 loc) · 881 Bytes

README.md

File metadata and controls

54 lines (36 loc) · 881 Bytes

Koupr UI

Design System and React Components.

Installation

npm i @koupr/ui

Koupr UI is meant to work on top of Chakra UI: https://v2.chakra-ui.com/getting-started

Usage

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>,
)

Releases

  • Versions with odd minor numbers like: 1.11 and 2.3 are LTS releases.
  • Versions with even minor numbers like: 1.10 and 2.2 are not meant to be relied upon in the long term.

Development

Build library:

bun run build

Run Storybook:

bun run storybook

Build Storybook:

bun run build-storybook

Licensing

Koupr UI is released under the MIT License.