diff --git a/pages/app/artifacts/layout.tsx b/pages/app/artifacts/layout.tsx new file mode 100644 index 0000000..cc4240b --- /dev/null +++ b/pages/app/artifacts/layout.tsx @@ -0,0 +1,5 @@ +import BaseLayout from '@/components/large/base_layout' + +export default function ArtifactsLayout({ children }: { children: React.ReactNode }) { + return {children} +}