mirror of
https://github.com/KuekHaoYang/KVideo.git
synced 2026-08-12 23:33:43 +08:00
16 lines
317 B
TypeScript
16 lines
317 B
TypeScript
'use client';
|
|
|
|
import { Suspense } from 'react';
|
|
import {
|
|
FavoritesPageContent,
|
|
FavoritesPageFallback,
|
|
} from '@/components/favorites/FavoritesPageContent';
|
|
|
|
export default function Favorites() {
|
|
return (
|
|
<Suspense fallback={<FavoritesPageFallback />}>
|
|
<FavoritesPageContent />
|
|
</Suspense>
|
|
);
|
|
}
|