@starkdefi/starkdefi-components-lib
v1.0.23-beta
Published
Component library for Starkdefi
Downloads
2
Readme
Starkdefi Component Library
This is a component library package for Starkdefi built with React, Typescript, and TailwindCSS.
Getting Started
Prerequisites
Installation
- Clone the repo
git clone
- Install NPM packages
pnpm install
- Run the development server
pnpm start
Usage
Import the components you need from the library.
import { Button } from 'starkdefi-component-lib'
const App = () => {
return <Button btnType="ringed">Click me</Button>
}