From db541d97efcf1e2893af84fd0d22ba48b54dce33 Mon Sep 17 00:00:00 2001 From: nflnkr <105123049+nflnkr@users.noreply.github.com> Date: Wed, 31 Jan 2024 18:08:01 +0300 Subject: [PATCH] rename component file to component's name --- src/App.tsx | 2 +- .../ViewPublicationPage/{index.tsx => ViewPublicationPage.tsx} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/pages/ViewPublicationPage/{index.tsx => ViewPublicationPage.tsx} (100%) diff --git a/src/App.tsx b/src/App.tsx index 52fd02e..de547f3 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -5,7 +5,7 @@ import { ruRU } from '@mui/x-date-pickers/locales'; import moment from "moment"; import { SnackbarProvider } from 'notistack'; import { SWRConfig } from "swr"; -import { ViewPage } from "./pages/ViewPublicationPage"; +import { ViewPage } from "./pages/ViewPublicationPage/ViewPublicationPage"; import lightTheme from "./utils/themes/light"; diff --git a/src/pages/ViewPublicationPage/index.tsx b/src/pages/ViewPublicationPage/ViewPublicationPage.tsx similarity index 100% rename from src/pages/ViewPublicationPage/index.tsx rename to src/pages/ViewPublicationPage/ViewPublicationPage.tsx