Skip to content

Commit 638e443

Browse files
committed
th-125: + PageLayout export to components.ts
1 parent d2d7169 commit 638e443

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

frontend/src/libs/components/components.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ export { Link } from './link/link.js';
1515
export { LocationInput } from './location-input/location-input.js';
1616
export { Modal } from './modal/modal.js';
1717
export { Notification } from './notification/notification.js';
18+
export { PageLayout } from './page-layout/page-layout.js';
1819
export { Pagination } from './pagination/pagination.js';
1920
export { ProtectedRoute } from './protected-route/protected-route.js';
2021
export { Radio } from './radio/radio.js';

frontend/src/libs/components/router/router.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ import { Dashboard } from '~/pages/dashboard/dashboard.js';
77
import { NotFound } from '~/pages/not-found/not-found.js';
88
import { WelcomePage } from '~/pages/welcome/welcome.js';
99

10-
import { ProtectedRoute } from '../components.js';
11-
import { PageLayout } from '../page-layout/page-layout.js';
10+
import { PageLayout, ProtectedRoute } from '../components.js';
1211
import { RouterProvider } from '../router-provider/router-provider.js';
1312

1413
const Router = (): JSX.Element => (

0 commit comments

Comments
 (0)