mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-06 00:04:39 +00:00
21 lines
520 B
JavaScript
21 lines
520 B
JavaScript
"use client";
|
|
|
|
import { NavigationRail } from "@/app/components/NavigationRail/NavigationRail";
|
|
import { useThemeStore } from "./store/theme-store";
|
|
import { useEffect } from "react";
|
|
// import { useStore } from "./store/app-store";
|
|
|
|
export const App = (props) => {
|
|
const themeStore = useThemeStore();
|
|
|
|
useEffect(() => {
|
|
themeStore.checkTheme();
|
|
}, []);
|
|
|
|
return (
|
|
<body className={themeStore.theme}>
|
|
<NavigationRail />
|
|
<main className="responsive">{props.children}</main>
|
|
</body>
|
|
);
|
|
};
|