Files
astuto/app/javascript/components/shared/PostBoardLabel.tsx

9 lines
212 B
TypeScript
Raw Normal View History

2019-09-21 12:54:57 +02:00
import * as React from 'react';
import IBoard from '../../interfaces/IBoard';
const PostBoardLabel = ({ name }: IBoard) => (
<span className="badge badgeLight">{name}</span>
);
export default PostBoardLabel;