Deck is the react toolset to build front end apps.
See Storybook live.
npm install @kshirish/deck --save
import React from 'react';
import { Button, GlobalStyle, Theme } from '@kshirish/deck';
export default function App() {
return (
<>
<GlobalStyle />
<Theme>
<Button>Hello world</Button>
</Theme>
</>
);
}
$ npm i
$ npm run storybook
Open http://localhost:6006/ in your favorite web browser.