deskie-ui
v1.0.6
Published
A React component libary build with styled-components for Deskie
Downloads
17
Readme
Quick Start
- Install the package
npm install deskie-ui
. - Deskie UI requires styled-component, react-spring and react-use-gesture to be installed as (peer) dependencies.
npm install styled-component react-spring react-use-gesture
- Wrap your project in the
ThemeProvider
component
import { ThemeProvider } from 'deskie-ui';
const Application = () => <ThemeProvider>...</ThemeProvider>;