diff --git a/src/components/UI/.delete-me b/src/components/UI/.delete-me deleted file mode 100644 index e69de29bb2..0000000000 diff --git a/src/components/layouts/Layout.tsx b/src/components/layouts/Layout.tsx index 0e1b011e2b..c78ec5a3ab 100644 --- a/src/components/layouts/Layout.tsx +++ b/src/components/layouts/Layout.tsx @@ -5,9 +5,10 @@ interface Props { children?: React.ReactNode; } +// TODO: if mobile, getMobileLayout, else getDesktopLayout export const Layout: FC = ({ children }) => { return ( - + {children} );