0.2.1 • Published 4 years ago

@kshirish/deck v0.2.1

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

Deck

npm.io npm npm npm

Deck is the react toolset to build front end apps.

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.