2282 Rename components to use the new naming convention part 2 (#2295)

renaming part 2
This commit is contained in:
bosiraphael
2023-10-31 12:32:16 +01:00
committed by GitHub
parent b319ba66ac
commit adeaa35e8d
109 changed files with 435 additions and 411 deletions

View File

@ -1,6 +1,6 @@
import { Navigate, Route, Routes, useLocation } from 'react-router-dom';
import { ObjectShowPage } from '@/metadata/components/RecordShowPage';
import { RecordShowPage } from '@/metadata/components/RecordShowPage';
import { AppPath } from '@/types/AppPath';
import { SettingsPath } from '@/types/SettingsPath';
import { DefaultLayout } from '@/ui/layout/page/DefaultLayout';
@ -64,7 +64,7 @@ export const App = () => {
<Route path={AppPath.OpportunitiesPage} element={<Opportunities />} />
<Route path={AppPath.RecordTablePage} element={<RecordTablePage />} />
<Route path={AppPath.ObjectShowPage} element={<ObjectShowPage />} />
<Route path={AppPath.RecordShowPage} element={<RecordShowPage />} />
<Route
path={AppPath.SettingsCatchAll}