Files
astuto/app/javascript/components/shared/PostBoardLabel.tsx
2022-04-07 18:58:18 +02:00

9 lines
227 B
TypeScript

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