import { type FC, type ReactNode } from "react"; export interface IBackgroundLayoutProps { children: ReactNode; } const BackgroundLayout: FC = ({ children }) => { return (
{children}
); }; export default BackgroundLayout;