import { getCreationList } from '@/services/creations';

import Timeline from '@/components/timeline/Timeline';

export default async function CreationVideosSection({ creatorId }: { creatorId: string }) {
  const creationVideos = await getCreationList({
    personIdentifierList: [creatorId],
    videoType: ['alkotas_video'],
  });
  return <Timeline data={creationVideos} lineColor="yellow" />;
}
