mirror of
https://github.com/vercel/next.js.git
synced 2026-09-20 02:25:18 +08:00
13 lines
201 B
JavaScript
13 lines
201 B
JavaScript
import React from 'react'
|
|
|
|
export default function AppLayout({ children }) {
|
|
return (
|
|
<html>
|
|
<head>
|
|
<title>RSC</title>
|
|
</head>
|
|
<body>{children}</body>
|
|
</html>
|
|
)
|
|
}
|