gtsoft-react-ui
v0.1.0
Published
GT이노비젼 React 애플리케이션 공통 컴포넌트 라이브러리
Readme
@gtsoft/react-ui
GT이노비젼 리액트 UI 컴포넌트 라이브러리
GT이노비젼 React UI 컴포넌트 라이브러리 (Webpack build, Deep Import 지원)
Installation
To use gtsoft/react-ui, Install the gtsoft/react-ui package and Its peer dependencies(react, react-dom).
npm install gtsoft/react-ui
yarn add gtsoft/react-uiUsage
- docs []
Components
| Component | | Default | | :-------: | :-: | :-----: | | Input | | | | Button | | | | Checkbox | | | | Label | | | | Radio | | | | Select | | | | Switch | | | | Title | | |
Custom Hooks
| Hook | | Default | | :-------: | :-: | :-----: | | useDialog | | | | useToast | | | | useDimmed | | | | usePopup | | |
How to Use
import Input from '@gtsoft/react-ui/Input';
or
//import Input from '@gtsoft/react-ui/components/atoms/Input';
//...
const Component = () => (
<Input value={"Hello GT!"}/>
);
export defualt Component;