project-reactの使い方
keitaです。今回は、私が開発した、project-reactと言う名の、
react用のUIセットの使い方をまとめました。
インストール
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
他にも、UIを開発しているのでお楽しみに