import * as React from 'react'; import PostStatusLabel from '../common/PostStatusLabel'; import Button from '../common/Button'; interface Props { name: string; color: string; handleClick(): void; isCurrentFilter: boolean; handleResetFilter(): void; } const PostStatusListItem = ({ name, color, handleClick, isCurrentFilter, handleResetFilter, }: Props) => (
{ isCurrentFilter ? : null }
); export default PostStatusListItem;