Deck is the react toolset to build front end apps.
See Storybook live.
npm install @kshirish/deck --saveimport 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 storybookOpen http://localhost:6006/ in your favorite web browser.