Files
onix/onix-gui/GUI/app/layout.js
2024-05-03 11:10:14 +05:30

23 lines
558 B
JavaScript

import { Inter } from "next/font/google";
import "./globals.css";
import { ToastContainer, toast } from "react-toastify";
import "react-toastify/dist/ReactToastify.css";
import { Bounce } from "react-toastify";
const inter = Inter({ subsets: ["latin"] });
export const metadata = {
title: "ONIX GUI",
description: "Generated by create next app",
};
export default function RootLayout({ children }) {
return (
<html lang="en">
<body className={inter.className}>
{children}
<ToastContainer />
</body>
</html>
);
}