React UI library inspired by Ant Design.
- Written in TypeScript with predictable static types.
- Internationalization by react-intl
- Styled-Components
Each component is installed separately. If you want to use one of them you have to use DSProvier first.
yarn add @synerise/ds-core
yarn add @synerise/ds-button
import { DSProvider } from '@synerise/ds-core';
import Button from '@synerise/ds-button';
<DSProvider>
<Button>Click Me!</Button>
</DSProvider>