import * as React from 'react'; interface Props { name: string; color: string; handleClick(): void; isCurrentFilter: boolean; handleResetFilter(): void; } const PostStatusListItem = ({ name, color, handleClick, isCurrentFilter, handleResetFilter, }: Props) => (