@a-front-end-project/a-ui
v1.1.0
Published
React components library
Downloads
13
Readme
Features
- 💪 A set of React components out of the box
- 🔥 Written in TypeScript
Documentation
It's the https://sunhaoxiang.github.io/a-ui website for the latest version of A UI.
Installation
npm install @a-front-end-project/a-ui
yarn add @a-front-end-project/a-ui
Usage
import React from 'react'
import { Button } from '@a-front-end-project/a-ui'
const App = () => (
<>
<Button btnType="primary">PRESS ME</Button>
</>
);