expreciones_algebraicas/app/layout.js

17 lines
278 B
JavaScript
Raw Normal View History

2024-09-13 08:57:55 -06:00
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">
2024-09-13 14:55:25 -06:00
<body>
2024-09-13 08:57:55 -06:00
{children}
</body>
</html>
);
}