Skip to content

Latest commit

 

History

History
36 lines (24 loc) · 793 Bytes

README.md

File metadata and controls

36 lines (24 loc) · 793 Bytes

Synerise Design System

React UI library inspired by Ant Design.

Features

How to use

Each component is installed separately. If you want to use one of them you have to use DSProvier first.

Step 1. - install Core

yarn add @synerise/ds-core

Step 2. - install component (ex. Button)

yarn add @synerise/ds-button

Step 3. - usage

import { DSProvider } from '@synerise/ds-core';
import Button from '@synerise/ds-button';

<DSProvider>
    <Button>Click Me!</Button>
</DSProvider>