9 lines
216 B
TypeScript
9 lines
216 B
TypeScript
|
|
|
|
export default function layout({ children }: { children: React.ReactNode}){
|
|
return <>
|
|
<h1>This is a Settings layout \/</h1>
|
|
{children}
|
|
<h1>This is a Settings layout /\</h1>
|
|
</>
|
|
} |