2025-06-19 17:15:03 +08:00

10 lines
278 B
TypeScript

import { DashboardLayout } from '@/components/layout/dashboard-layout';
import { ActorsLibraryPage } from '@/components/pages/actors-library-page';
export default function ActorsPage() {
return (
<DashboardLayout>
<ActorsLibraryPage />
</DashboardLayout>
);
}