Skip to content

Latest commit

 

History

History
48 lines (32 loc) · 805 Bytes

README.md

File metadata and controls

48 lines (32 loc) · 805 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:

npm run build

Watch:

npm run watch

Licensing

Koupr UI is released under the MIT License.