2024-09-06 19:35:13 -06:00
|
|
|
import './globals.css'
|
2024-09-06 15:57:59 -06:00
|
|
|
export const metadata={
|
2024-09-08 16:29:17 -06:00
|
|
|
title: 'Totito_app',
|
2024-09-06 15:57:59 -06:00
|
|
|
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
|
|
|
}
|