import type { StudentTopic } from '../../types' interface Props { topic: StudentTopic onStart: (topic: StudentTopic) => void } export default function TopicChip({ topic, onStart }: Props) { return (

{topic.name}

Topic {topic.order_index + 1}

) }