import * as React from 'react'; interface Props { name: string; } const PostBoardLabel = ({ name }: Props) => ( {name?.toUpperCase()} ); export default PostBoardLabel;