Skip to content

Commit

Permalink
docs: Fix typo in closing tag of sample code (vercel#72361)
Browse files Browse the repository at this point in the history
Hello! Thank you as always 🫶 
I'd like to contribute to the following points:

### Improving Documentation

- fix typo in closing tag
  - `<>` -> `</>`

---
👇 Now

<img width="362" alt="image"
src="https://github.com/user-attachments/assets/fbb29a76-e1b8-467b-8453-46e5e1548db1">

in: [File Conventions: layout.js |
Next.js](https://nextjs.org/docs/app/api-reference/file-conventions/layout)

---

Thank you for reading! I look forward to working together.
  • Loading branch information
hato-poppo authored Nov 5, 2024
1 parent 7544178 commit 7965dd7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/02-app/02-api-reference/03-file-conventions/layout.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ export default function Layout({ children }: { children: React.ReactNode }) {
<ClientComponent />
{/* Other Layout UI */}
<main>{children}</main>
<>
</>
)
}
```
Expand All @@ -172,7 +172,7 @@ export default function Layout({ children }) {
<ClientComponent />
{/* Other Layout UI */}
<main>{children}</main>
<>
</>
)
}
```
Expand Down

0 comments on commit 7965dd7

Please sign in to comment.