mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-05 07:44:38 +00:00
20 lines
510 B
TypeScript
20 lines
510 B
TypeScript
"use client";
|
|
import { useUserStore } from "./store/auth";
|
|
import { Navbar } from "./components/Navbar/Navbar";
|
|
import { Inter } from "next/font/google";
|
|
import { useEffect } from "react";
|
|
const inter = Inter({ subsets: ["latin"] });
|
|
|
|
export const App = (props) => {
|
|
const userStore = useUserStore((state) => state);
|
|
useEffect(() => {
|
|
userStore.checkAuth();
|
|
}, []);
|
|
|
|
return (
|
|
<body className={`${inter.className} overflow-x-hidden`}>
|
|
<Navbar />
|
|
{props.children}
|
|
</body>
|
|
);
|
|
};
|