0.1.2 • Published 3 years ago

kylin-design v0.1.2

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

kylin-design

仿照antd,使用ts+react打造自己的组件库

安装

npm i kylin-design -S

使用

// 引入组件
import { Button } from 'kylin-design';
// 引入组件样式
import 'kylin-design/dist/index.css';

function App() {
  return (
    <div className="App">
      <Button btnType="primary">bbbbb</Button>
    </div>
  );
}

export default App;