@keitagames/keitaui
v1.3.94
Published
<div align="center"> <img src="https://capsule-render.vercel.app/api?type=waving&color=gradient&customColorList=0,2,2,5,30&height=150§ion=header&animation=twinkling" /> </div>
Downloads
13
Readme
Project-React
〜keitagamesのreactコンポーネントライブラリ〜
こんにちはkeitaです。
これは私達のサイトで使うと思うreactコンポーネントライブラリです。
使い方.
インストール
npm install @keitagames/keitauiサンプル
//インストール npm install @keitagames/keitaui
import { default as Input } from '@keitagames/keitaui/src/components/Input'
import { default as Button } from '@keitagames/keitaui/src/components/Button'
function App() {
function a(){
}
return (
<>
<h1>welcome to project-react</h1>
<Button label="keitagames" onClick={a}></Button>
<Input p="keitagames..."></Input>
</>
)
}
export default App