安装
前置条件
Ensure your have the latest version of NodeJS, and a package manager: NPM or Yarn. 请确认你已经安装了最新的 NodeJS 以及包管理器:npm 或 yarn
- Node.js 12.18+ (installation with nvm)
- Yarn 1.22.4+ Yarn Site
安装
1$ yarn add @kubed/components @kubed/hooks @kubed/icons2# or3$ npm i @kubed/components @kubed/hooks @kubed/icons
使用
- 用
KubedConfigProvider
包裹你的项目根组件:
1import { CssBaseline, KubedConfigProvider } from '@kubed/components';23const Application = () => (4<KubedConfigProvider>5<CssBaseline /> // ---> Normalize styles6<AppComponent /> // ---> Root of your application7</KubedConfigProvider>8)
- 像如下代码引入组件去使用即可:
1import { Button } from "@kubed/components"23const MyComponent = () => <Button>Click Me</Button>