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

17 lines
248 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-23 15:43:58 -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 />
2025-10-23 15:43:58 -06:00
{children}
2025-10-20 19:29:24 -06:00
</body>
</html>
2025-10-23 15:43:58 -06:00
);
2025-10-20 19:29:24 -06:00
}