import type { ReactNode } from 'react';

type Props = {
    children: ReactNode;
};

export function AppShell({ children }: Props) {
    return (
        <div className="fixed inset-0 flex w-full flex-col overflow-hidden">
            {children}
        </div>
    );
}
