slydes
v0.3.0
Published
## Getting Started
Downloads
2
Readme
Welcome to Slydes!
Getting Started
Install the package with
npm run start
Import the Slider component and use it in your React App:
import { Slyder } from 'slydes';
...
<Slyder
max={100}
min={1}
minLabel={"1%"}
maxLabel={"100%"}
step={5}
label={"Coolness"}
id={"cool-slider"}
onChange={() => {}}
initialValue={50}
/>
...
Storybook
To view the storybook, checkout the package locally and run npm run storybook
.
Styling
Development
To start the project locally:
Run
npm install
Run
npm run dev
Have fun!