diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index 3dd76a6..d42146e 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -94,16 +94,16 @@ function App() { {/* Toast notifications */} diff --git a/frontend/src/components/common/index.ts b/frontend/src/components/common/index.ts index 427a7b3..5fb45f4 100644 --- a/frontend/src/components/common/index.ts +++ b/frontend/src/components/common/index.ts @@ -2,7 +2,14 @@ export { Button } from './Button'; export { Input } from './Input'; export { Card, CardHeader, CardContent, CardFooter } from './Card'; export { Loading, LoadingSkeleton } from './Loading'; -export * from './ErrorBoundary'; -export * from './Skeleton'; -export * from './OfflineIndicator'; -export * from './SkipLink'; \ No newline at end of file +export { ErrorBoundary, PageErrorBoundary } from './ErrorBoundary'; +export { + Skeleton, + SkeletonGroup, + SkeletonCard, + SkeletonTable, + SkeletonGalleryGrid, + SkeletonList +} from './Skeleton'; +export { OfflineIndicator, useOnlineStatus } from './OfflineIndicator'; +export { SkipLink } from './SkipLink'; \ No newline at end of file diff --git a/frontend/src/pages/GalleryPage.tsx b/frontend/src/pages/GalleryPage.tsx index 6e8c123..4fce709 100644 --- a/frontend/src/pages/GalleryPage.tsx +++ b/frontend/src/pages/GalleryPage.tsx @@ -6,7 +6,7 @@ import { format, differenceInDays, parseISO } from 'date-fns'; import { Card, CardContent, Input, Button, Loading } from '../components/common'; import { useGalleryAuth } from '../contexts'; import { useGalleryInfo } from '../hooks/useGallery'; -import { GalleryView } from '../components/gallery/GalleryView'; +import { GalleryView } from '../components/gallery'; import { analyticsService } from '../services/analytics.service'; export const GalleryPage: React.FC = () => {