Files
astuto/app/javascript/components/shared/PostBoardLabel.tsx
2022-05-08 16:36:35 +02:00

11 lines
216 B
TypeScript

import * as React from 'react';
interface Props {
name: string;
}
const PostBoardLabel = ({ name }: Props) => (
<span className="badge badgeLight">{name?.toUpperCase()}</span>
);
export default PostBoardLabel;