https://github.com/kshirish/deck
Deck is the react toolset to build front end apps.
https://github.com/kshirish/deck
design-library react storybook
Last synced: 3 months ago
JSON representation
Deck is the react toolset to build front end apps.
- Host: GitHub
- URL: https://github.com/kshirish/deck
- Owner: kshirish
- License: mit
- Created: 2020-08-30T09:05:35.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-09-04T12:59:15.000Z (almost 5 years ago)
- Last Synced: 2025-02-18T16:15:17.700Z (4 months ago)
- Topics: design-library, react, storybook
- Language: JavaScript
- Homepage: https://kshirish.github.io/deck/
- Size: 2.59 MB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Deck

[](https://www.npmjs.com/package/@kshirish/deck)
[]()
[](https://www.npmjs.com/package/@kshirish/deck)> Deck is the react toolset to build front end apps.
See Storybook [live](https://kshirish.github.io/deck).
### Installation
```shell
npm install @kshirish/deck --save
```### Usage
```js
import React from 'react';
import { Button, GlobalStyle, Theme } from '@kshirish/deck';export default function App() {
return (
<>
Hello world
>
);
}
```### Develop components with Storybook
```shell
$ npm i
$ npm run storybook
```Open http://localhost:6006/ in your favorite web browser.