mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-04 23:34:38 +00:00
11 lines
304 B
JavaScript
11 lines
304 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>
|
|
);
|
|
}
|