An open API service indexing awesome lists of open source software.

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.

Awesome Lists containing this project

README

        

# Deck

![](https://travis-ci.org/kshirish/deck.svg?branch=master)
[![npm](https://img.shields.io/npm/v/@kshirish/deck)](https://www.npmjs.com/package/@kshirish/deck)
[![npm](https://img.shields.io/npm/l/@kshirish/deck)]()
[![npm](https://img.shields.io/npm/dw/@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).

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.