mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-05 07:44:38 +00:00
12 lines
305 B
JavaScript
12 lines
305 B
JavaScript
import { Navbar } from "./components/Navbar/Navbar";
|
|
import { Inter } from "next/font/google";
|
|
const inter = Inter({ subsets: ["latin"] });
|
|
|
|
export const App = (props) => {
|
|
return (
|
|
<body className={`${inter.className} overflow-x-hidden`}>
|
|
<Navbar />
|
|
{props.children}
|
|
</body>
|
|
);
|
|
}
|