2023-03-13から1日間の記事一覧

カウントダウンタイマーを作る

www.npmjs.com index.js import React from 'react'; import ReactDOM from 'react-dom/client'; import './index.css'; import MyTimer from './MyTimer'; import reportWebVitals from './reportWebVitals'; import { unstable_batchedUpdates } from 'rea…

ストップウォッチを作る

react-timer-hookを用いる。 コマンドプロンプトで、プロジェクトのディレクトリに移動し、 npm install --save react-timer-hook と記載し、Enterを押す。 MyStopwatch.js import {useStopwatch} from 'react-timer-hook'; const MyStopwatch = ()=>{ const…

トグルボタンの作成~三項演算子を学ぶ~

下記HPはわかりやすいです。 qiita.com ToggleTest.js import {useState} from 'react'; const ToggleTest = ()=>{ const [open,setOpen] = useState(true); const changeOpen = ()=>{ if(open === true){ setOpen(false); }else{ setOpen(true); } } return…