Files
PawShip/app/settings/layout.tsx
2026-04-03 18:25:54 +01:00

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>
</>
}