import * as React from 'react'; interface Props { name: string; color: string; } const PostStatusLabel = ({ name, color, }: Props) => ( {name} ); export default PostStatusLabel;