"use client"; import { FC, ReactNode } from "react"; import { AppShell } from "@mantine/core"; type Props = { children: ReactNode; }; const AppShellFooterWrapper: FC = ({ children }) => { return {children}; }; export default AppShellFooterWrapper;