next.jsのexampleを見ていたら、次のような書き方がありました。
js
1export const withRedux = (PageComponent, { ssr = true } = {}) => { 2... 3}
適当なファイルを作って適当な値を入れてみたのですが、
js
1export const withRedux = (PageComponent, { ssr = true }) => { 2... 3}
との違いがわかりません。
詳しい方教えてください!
回答1件
あなたの回答
tips
プレビュー