export interface DotListProps { content: string[]; className?: string; } export function DotList(props: DotListProps) { return (
{props.content.map((item, index) => ( {index !== 0 ? ( ● ) : null} {item} ))}