From 383c9e55ac858c034c9bdc58343f8a3179592e3a Mon Sep 17 00:00:00 2001 From: Ren Amamiya <123083837+reyamir@users.noreply.github.com> Date: Sat, 1 Apr 2023 11:15:47 +0700 Subject: [PATCH] rename from navigator to navigation --- src/components/{navigator => navigation}/chats.tsx | 0 src/components/{navigator => navigation}/index.tsx | 4 ++-- src/components/{navigator => navigation}/newsfeed.tsx | 0 src/layouts/withSidebar.tsx | 2 +- 4 files changed, 3 insertions(+), 3 deletions(-) rename src/components/{navigator => navigation}/chats.tsx (100%) rename src/components/{navigator => navigation}/index.tsx (68%) rename src/components/{navigator => navigation}/newsfeed.tsx (100%) diff --git a/src/components/navigator/chats.tsx b/src/components/navigation/chats.tsx similarity index 100% rename from src/components/navigator/chats.tsx rename to src/components/navigation/chats.tsx diff --git a/src/components/navigator/index.tsx b/src/components/navigation/index.tsx similarity index 68% rename from src/components/navigator/index.tsx rename to src/components/navigation/index.tsx index 8dae9db8..a10d3c55 100644 --- a/src/components/navigator/index.tsx +++ b/src/components/navigation/index.tsx @@ -1,5 +1,5 @@ -import Chats from '@components/navigator/chats'; -import Newsfeed from '@components/navigator/newsfeed'; +import Chats from '@components/navigation/chats'; +import Newsfeed from '@components/navigation/newsfeed'; export default function Navigation() { return ( diff --git a/src/components/navigator/newsfeed.tsx b/src/components/navigation/newsfeed.tsx similarity index 100% rename from src/components/navigator/newsfeed.tsx rename to src/components/navigation/newsfeed.tsx diff --git a/src/layouts/withSidebar.tsx b/src/layouts/withSidebar.tsx index 8b3e8ff0..39a3f711 100644 --- a/src/layouts/withSidebar.tsx +++ b/src/layouts/withSidebar.tsx @@ -1,6 +1,6 @@ import AppHeader from '@components/appHeader'; import MultiAccounts from '@components/multiAccounts'; -import Navigation from '@components/navigator'; +import Navigation from '@components/navigation'; export default function WithSidebarLayout({ children }: { children: React.ReactNode }) { return (