@estebandinamarca/ds-example
v6.2.4
Published
Congrats! You just saved yourself hours of work by bootstrapping this project with TSDX. Let’s get you oriented with what’s here and how to use it. x > This TSDX setup is meant for developing React component libraries (not apps!) that can be published to
Downloads
2
Readme
Sample Design System / Component Library (React + Chakra)
Congrats! You just saved yourself hours of work by bootstrapping this project with TSDX. Let’s get you oriented with what’s here and how to use it. x
This TSDX setup is meant for developing React component libraries (not apps!) that can be published to NPM. If you’re looking to build a React-based app, you should use
create-react-app
,razzle
,nextjs
,gatsby
, orreact-static
. X If you’re new to TypeScript and React, checkout this handy cheatsheet
Importing Theme
// import just theme and Button
import { Theme, Button } from '@estebandinamarca/ds-example';
// inside your code...
<Button colorScheme="primary">Click me</Button>