0.1.6 • Published 3 years ago

cola-react-ui v0.1.6

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

cola-react-ui

一个基于React Hooks和TypeScript的组件库。

Install

npm install cola-react-ui --save

Quickstart

import { Button } from 'cola-react-ui'
import 'cola-react-ui/dist/index.css'

const App = () => (
  <>
    <Button btnType="primary">PRESS ME</Button>
  </>
)