manyid
v0.0.1
Published
An enterprise-class UI design language and React components implementation
Downloads
1
Maintainers
Readme
一套企业级 UI 设计语言和 React 组件库。
使用文档
https://manyi8634.github.io/manyi-design-doc
📦 安装
npm install manyid --save
yarn add manyid
🔨 示例
import React from 'react';
import { Button, DatePicker } from 'manyid';
const App = () => (
<>
<Button type="primary">PRESS ME</Button>
<DatePicker />
</>
);