polestar-antd
Version:
[](https://www.npmjs.com/package/polestar-antd) [](https://travis-ci.org/nkiateam/polestar-antd) [ • 1.79 kB
Markdown
# polestar-antd
[](https://www.npmjs.com/package/polestar-antd)
[](https://travis-ci.org/nkiateam/polestar-antd)
[](https://david-dm.org/nkiateam/polestar-antd)
[](https://david-dm.org/nkiateam/polestar-antd?type=dev)
[](https://raw.githubusercontent.com/nkiateam/polestar-antd/master/LICENSE)
polestar-antd는 [ant-design](https://github.com/ant-design/ant-design/) 컴포넌트들을 Wrapping한 컴포넌트 라이브러리 입니다.
Wrpping 된 컴포넌트들의 목록은 다음과 같습니다.
> ### Wrapping Component
- [Button](https://ant.design/components/button/)
- [Steps](https://ant.design/components/steps/)
## Installation
```sh
npm install polestar-antd --save-dev
```
### Usage
```jsx
import React from 'react';
import ReactDOM from 'react-dom';
import Wizard from 'polestar-antd';
const App = () => (
<Wizard>
<Wizard.Step title="Step1" description="step1 description">
Step1
</Wizard.Step>
<Wizard.Step title="Step2" description="step2 description">
Step2
</Wizard.Step>
<Wizard.Step title="Step3" description="step3 description">
Step3
</Wizard.Step>
</Wizard>
);
ReactDOM.render(
<App />,
document.getElementById('app')
);
```
## Examples
https://nkiateam.github.io/polestar-antd/examples
## Documentation
https://nkiateam.github.io/polestar-antd/docs
## License
[The MIT License (MIT)](/LICENSE)