diff --git a/src/components/columns/navigator/chats.tsx b/src/components/navigator/chats.tsx similarity index 100% rename from src/components/columns/navigator/chats.tsx rename to src/components/navigator/chats.tsx diff --git a/src/components/columns/navigator/index.tsx b/src/components/navigator/index.tsx similarity index 53% rename from src/components/columns/navigator/index.tsx rename to src/components/navigator/index.tsx index 324e1582..8dae9db8 100644 --- a/src/components/columns/navigator/index.tsx +++ b/src/components/navigator/index.tsx @@ -1,7 +1,7 @@ -import Chats from '@components/columns/navigator/chats'; -import Newsfeed from '@components/columns/navigator/newsfeed'; +import Chats from '@components/navigator/chats'; +import Newsfeed from '@components/navigator/newsfeed'; -export default function NavigatorColumn() { +export default function Navigation() { return (
{/* Newsfeed */} diff --git a/src/components/columns/navigator/newsfeed.tsx b/src/components/navigator/newsfeed.tsx similarity index 100% rename from src/components/columns/navigator/newsfeed.tsx rename to src/components/navigator/newsfeed.tsx diff --git a/src/layouts/withSidebar.tsx b/src/layouts/withSidebar.tsx index 77ccef46..8b3e8ff0 100644 --- a/src/layouts/withSidebar.tsx +++ b/src/layouts/withSidebar.tsx @@ -1,6 +1,6 @@ import AppHeader from '@components/appHeader'; -import NavigatorColumn from '@components/columns/navigator'; import MultiAccounts from '@components/multiAccounts'; +import Navigation from '@components/navigator'; export default function WithSidebarLayout({ children }: { children: React.ReactNode }) { return ( @@ -17,7 +17,7 @@ export default function WithSidebarLayout({ children }: { children: React.ReactN
- +
{children}