2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Next.js 素振り会場を作る

Last updated at Posted at 2020-12-14

素振りっていい表現だなと思って使っているけどあんまり周りで聞かない気がする。

以下五行でなんとか

$ npm init -y
$ npm install next react react-dom
$ mkdir src/pages/
$ echo 'export default () => <h1>hello</h1>' > src/pages/index.jsx
$ npx next dev

React 17 の新しいJSXトランスフォーマーのおかげで import React from 'react' がなくてもいけるようになっている。便利。

Fast Refresh が発生したときローカルステートを保護するために

名前をつけよと。

Anonymous arrow functions cause Fast Refresh to not preserve local component state.
Please add a name to your function, for example:

Before
export default () => <div />;

After
const Named = () => <div />;
export default Named;

next.js の開発サーバのHMRちょっと状態の保全の癖があるなと思っていたけど、こういうのあるのか。気をつけてみよう。

Fast Refresh は こういうものらしい。9.4から入った。コンポーネントの状態を維持したままコードの変更をリロードできる。

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?