diff --git a/apps/react/src/app/components/page-layout/index.tsx b/apps/react/src/app/components/page-layout/index.tsx deleted file mode 100644 index a70539a33..000000000 --- a/apps/react/src/app/components/page-layout/index.tsx +++ /dev/null @@ -1,27 +0,0 @@ -import React from 'react' - -interface PageLayoutProps { - children: React.ReactNode - contentLeft?: React.ReactNode - stickyContent?: React.ReactNode - className?: string - [key: string]: any -} - -export const PageLayout: React.FC = ({ - children, - contentLeft, - stickyContent, - className = '', - ...props -}) => { - return ( -
- {contentLeft && } -
- {stickyContent &&
{stickyContent}
} -
{children}
-
-
- ) -}