Skip to content

Latest commit

 

History

History
45 lines (33 loc) · 1.06 KB

README.md

File metadata and controls

45 lines (33 loc) · 1.06 KB

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.