1.1.0 • Published 10 months ago

@a-front-end-project/a-ui v1.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
10 months ago

npm package test coverage languages

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>
  </>
);