Skip to content

Latest commit

 

History

History
60 lines (38 loc) · 3 KB

README.md

File metadata and controls

60 lines (38 loc) · 3 KB

React-Pad

Reactメモ帳

This repository only has client side code.

The server side GitHub repository is here.

App URL

Design

React Bootstrap

The basic UI is referenced from "SE1年目のJavaScript Webアプリケーションフレームワーク道...Expressで簡易メモ帳アプリ(1)".

Client Side Routing

React Router Dom

Routing -to code

Data Fetching

Fetch API

e.g. POST new memo using Fetch. -to code

Form (Controlled Components)

e.g. Controlling input tag and submission of form tag. -to code

React Hooks

  • useState()
  • useEffect()
  • useReducer()

e.g. fetching all memo data in every rendering. -to code

TypeScript

e.g. defining type of memo which is fetched from server. -to code