Skip to content
This repository has been archived by the owner on Sep 17, 2024. It is now read-only.

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
nonoakij committed May 23, 2024
1 parent 724760c commit 124a996
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 10 deletions.
6 changes: 5 additions & 1 deletion docs/src/content/docs/guides/08-suspence.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,11 @@ export default function InboxPage() {
<video src={videoSrc} controls muted loop autoPlay />

<Aside>
loading.ts (loading.js) を追加することでも、ローディング画面をカスタマイズすることができます。
`fallback`以外にも`loading.ts (loading.js)` を追加することでも、ローディング画面をカスタマイズすることができます。

`loading.ts (loading.js)` が存在する場合には、自動的に`fallback` に指定するコンポーネントとして利用されます。

https://nextjs.org/docs/app/api-reference/file-conventions/loading
</Aside>

## まとめ
Expand Down
22 changes: 13 additions & 9 deletions docs/src/content/docs/guides/99-thanks.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,18 @@ sidebar:
---
// TODO: このページはまだ作成中です。

## React DevTool をつかう

## debugger をつかう

## 'use client'? 'use server'? 'use memo'?
'use ***'は境界です。
'use client'はCCの境界です。
'use server'はSAの境界です。RSCではない。
'use memo'はReact compilerの境界です。

## Reactのcanaryはフレームワークレディです。

## cacheの話はしていません。なぜなら変わりそうだから。

[Breaking] Disable automatic fetch caching
Expand All @@ -23,16 +35,8 @@ https://github.com/vercel/next.js/pull/65825
- docs: Update Route Handlers docs for dynamic
https://github.com/vercel/next.js/pull/66010/files

## 'use client'? 'use server'? 'use memo'?
'use ***'は境界です。
'use client'はCCの境界です。
'use server'はSAの境界です。RSCではない。
'use memo'はReact compilerの境界です。

## Reactのcanaryはフレームワークレディです。

## route handler について

## template について

# Metadata について
## Metadata について

0 comments on commit 124a996

Please sign in to comment.