Files
front-Censo/src/app/layout.tsx
T

15 lines
242 B
TypeScript
Raw Normal View History

2025-10-22 13:27:10 -06:00
import Header from "../components/header";
2025-10-20 19:29:24 -06:00
2025-10-22 13:27:10 -06:00
export default function RootLayout({ children }: { children: React.ReactNode }) {
2025-10-20 19:29:24 -06:00
return (
2025-10-22 13:27:10 -06:00
<html lang="es">
<body>
<Header />
{children}
2025-10-20 19:29:24 -06:00
</body>
</html>
2025-10-22 13:27:10 -06:00
)
2025-10-20 19:29:24 -06:00
}