KAEDE Hack blog

JavaScript 中心に ライブラリなどの使い方を解説する技術ブログ。

Entries from 2020-12-24 to 1 day

もう一回 Next.js

set up nextjs.org npx create-next-app next-2020 --use-npm --example "https://github.com/vercel/next-learn-starter/tree/master/learn-starter" 2020年最後のってことで作る 404 This page could not be found. は???? 3001 を開けた first-post p…

react-intl を学ぶ

https://youtu.be/YrWRxs-lqj4 IntlProvider index.js の return のナカに書いて 全体を 包んでいる。 locale と message を渡している ここが実際は context の type lang になってく FormattedMessage FormattedMessage をいきなり使って id に色々指定し…

TS を学ぶ

index Primitive, Literal, interface(obj), function, class, の type のことを調べて書いた why zenn.dev export type locales = "ja" | "en"; interface LocaleProviderProps { lang: locales; } type で作って interface に組み込むのか? context での…