UNPKG

polestar-antd

Version:

[![npm](https://img.shields.io/npm/v/polestar-antd.svg)](https://www.npmjs.com/package/polestar-antd) [![Build Status](https://travis-ci.org/nkiateam/polestar-antd.svg?branch=master)](https://travis-ci.org/nkiateam/polestar-antd) [![Dependencies](https:

59 lines (44 loc) 1.79 kB
# polestar-antd [![npm](https://img.shields.io/npm/v/polestar-antd.svg)](https://www.npmjs.com/package/polestar-antd) [![Build Status](https://travis-ci.org/nkiateam/polestar-antd.svg?branch=master)](https://travis-ci.org/nkiateam/polestar-antd) [![Dependencies](https://img.shields.io/david/nkiateam/polestar-antd.svg)](https://david-dm.org/nkiateam/polestar-antd) [![DevDependencies](https://img.shields.io/david/dev/nkiateam/polestar-antd.svg)](https://david-dm.org/nkiateam/polestar-antd?type=dev) [![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](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)