import { Suspense } from 'react';

type LayoutProps = {
  children: React.ReactNode;
};

export default function Layout({ children }: LayoutProps) {
  return (
    <Suspense fallback={<p>Loading project...</p>}>
      {children}
    </Suspense>
  );
}