This is a component library package for Starkdefi built with React, Typescript, and TailwindCSS.
- Clone the repo
git clone
- Install NPM packages
pnpm install
- Run the development server
pnpm start
Import the components you need from the library.
import { Button } from 'starkdefi-component-lib'
const App = () => {
return <Button btnType="ringed">Click me</Button>
}