15 lines
320 B
TypeScript
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;
|