expreciones_algebraicas/app/layout.js

17 lines
277 B
JavaScript
Raw Permalink Normal View History

2024-09-13 08:57:55 -06:00
import "./globals.css";
export const metadata = {
2024-09-17 11:34:05 -06:00
title: "tarea geogebra",
2024-09-13 08:57:55 -06:00
description: "Generated by create next app",
};
export default function RootLayout({ children }) {
return (
<html lang="en">
2024-09-13 14:55:25 -06:00
<body>
2024-09-13 08:57:55 -06:00
{children}
</body>
</html>
);
}