2024-09-06 15:57:59 -06:00
|
|
|
export const metadata={
|
|
|
|
title: 'Totito',
|
|
|
|
description:'generado con next.js'
|
|
|
|
}
|
2024-09-06 12:06:39 -06:00
|
|
|
|
2024-09-06 15:57:59 -06:00
|
|
|
export default function RootKLayout({children}){
|
2024-09-06 12:19:33 -06:00
|
|
|
return(
|
2024-09-06 15:57:59 -06:00
|
|
|
<html lang="es">
|
|
|
|
<body>{children}</body>
|
|
|
|
</html>
|
2024-09-06 12:19:33 -06:00
|
|
|
)
|
2024-09-06 15:57:59 -06:00
|
|
|
}
|