diff --git a/src/app/studio/(features)/remix/_layout.tsx b/src/app/studio/(features)/remix/_layout.tsx new file mode 100644 index 0000000..1956907 --- /dev/null +++ b/src/app/studio/(features)/remix/_layout.tsx @@ -0,0 +1,13 @@ +// type RemixLayoutProps = { +// children: React.ReactNode; +// }; +// +// const RemixLayout = ({ children }: RemixLayoutProps) => { +// return ( +//
+// {children} +//
+// ); +// }; +// +// export default RemixLayout; diff --git a/src/app/studio/(features)/remix/page.tsx b/src/app/studio/(features)/remix/_page.tsx similarity index 100% rename from src/app/studio/(features)/remix/page.tsx rename to src/app/studio/(features)/remix/_page.tsx diff --git a/src/app/studio/(features)/remix/layout.tsx b/src/app/studio/(features)/remix/layout.tsx deleted file mode 100644 index 623fc3e..0000000 --- a/src/app/studio/(features)/remix/layout.tsx +++ /dev/null @@ -1,13 +0,0 @@ -type RemixLayoutProps = { - children: React.ReactNode; -}; - -const RemixLayout = ({ children }: RemixLayoutProps) => { - return ( -
- {children} -
- ); -}; - -export default RemixLayout;