Installation

Install

pnpm

pnpm add raw-ui

npm

npm install raw-ui --save

Usage

Wrap the root of your application with RawUIProvider, and then you can use any component

import { RawUIProvider, Button } from 'raw-ui';
 
const App = () => (
  <RawUIProvider>
    <Button>Default</Button>
  </RawUIProvider>
);