expreciones_algebraicas/app/layout.js
2024-09-13 14:55:25 -06:00

17 lines
278 B
JavaScript

import "./globals.css";
export const metadata = {
title: "Create Next App",
description: "Generated by create next app",
};
export default function RootLayout({ children }) {
return (
<html lang="en">
<body>
{children}
</body>
</html>
);
}