Skip to content
/ deck Public

Deck is the react toolset to build front end apps.

License

Notifications You must be signed in to change notification settings

kshirish/deck

Repository files navigation

Deck

npm npm npm

Deck is the react toolset to build front end apps.

See Storybook live.

Deck

Installation

npm install @kshirish/deck --save

Usage

import React from 'react';
import { Button, GlobalStyle, Theme } from '@kshirish/deck';

export default function App() {
  return (
    <>
      <GlobalStyle />
      <Theme>
        <Button>Hello world</Button>
      </Theme>
    </>
  );
}

Develop components with Storybook

$ npm i
$ npm run storybook

Open http://localhost:6006/ in your favorite web browser.