Files
Crm-Frontend/src/components/layout/AppShellWrappers/AppShellFooterWrapper.tsx
2025-08-19 11:59:58 +04:00

15 lines
320 B
TypeScript

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