app_totito_next/app/layout.js
2024-09-06 15:57:59 -06:00

12 lines
232 B
JavaScript

export const metadata={
title: 'Totito',
description:'generado con next.js'
}
export default function RootKLayout({children}){
return(
<html lang="es">
<body>{children}</body>
</html>
)
}