Fixed 'use client' usage.

This commit is contained in:
Mike Cao 2024-02-05 23:59:33 -08:00
parent be5592446a
commit f7151a880e
208 changed files with 323 additions and 385 deletions

View file

@ -1,10 +1,9 @@
'use client';
import { ReactNode } from 'react';
import { usePathname } from 'next/navigation';
import SideNav from 'components/layout/SideNav';
import styles from './SettingsLayout.module.css';
import styles from './MenuLayout.module.css';
export function SettingsLayout({ items = [], children }: { items: any[]; children: ReactNode }) {
export function MenuLayout({ items = [], children }: { items: any[]; children: ReactNode }) {
const pathname = usePathname();
const cloudMode = !!process.env.cloudMode;
@ -22,4 +21,4 @@ export function SettingsLayout({ items = [], children }: { items: any[]; childre
);
}
export default SettingsLayout;
export default MenuLayout;

View file

@ -1,4 +1,3 @@
'use client';
import { ReactNode } from 'react';
import classNames from 'classnames';
import { Banner, Loading } from 'react-basics';