Quick Start

Quickstart

Install Koval UI

npm i koval-ui

Set up Provider and theme

Wrap your application code with Koval Provider component at the highest possible level. Apply selected Koval theme. Don’t forget to include Koval CSS to your bundle.

App.tsx
import type {FC} from 'react';
import {Provider, themePodil, themeDnipro} from 'koval-ui';
import 'koval-ui/dist/index.css';
 
const App: FC = () => {
    return <Provider theme={themePodil}>{/*App contents*/}</Provider>;
};