forked from mongodb/docs-sample-apps
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.ts
More file actions
17 lines (17 loc) · 667 Bytes
/
index.ts
File metadata and controls
17 lines (17 loc) · 667 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Components
export { default as MovieCard } from './MovieCard';
export { default as Pagination } from './Pagination';
export { default as PageSizeSelector } from './PageSizeSelector';
export { default as ActionButtons } from './ActionButtons';
export { default as EditMovieForm } from './EditMovieForm';
export { default as AddMovieForm } from './AddMovieForm';
export { default as BatchEditMovieForm } from './BatchEditMovieForm';
export { default as SearchMovieModal } from './SearchMovieModal';
export {
Skeleton,
MovieCardSkeleton,
PageSelectorSkeleton,
PaginationSkeleton,
RatingCardSkeleton,
MovieDetailsSkeleton
} from './LoadingSkeleton';