thread.started
turn.started
I’ll look this up through the Storybook documentation tools so the prop list comes from the documented component API, not assumptions from source.
The local Storybook has a `ReviewCard` entry with three documented variants, so I’m pulling that component’s docs next and will stick to the documented props/examples.
`ReviewCard` accepts exactly these documented props: ```ts type Props = { author: string; rating: number; comment: string; }; ``` Usage: ```tsx import { ReviewCard } from "807-docs-request"; ...
turn.completed