mirror of
https://github.com/astuto/astuto.git
synced 2025-12-16 11:47:56 +01:00
9 lines
212 B
TypeScript
9 lines
212 B
TypeScript
import * as React from 'react';
|
|
|
|
import IBoard from '../../interfaces/IBoard';
|
|
|
|
const PostBoardLabel = ({ name }: IBoard) => (
|
|
<span className="badge badgeLight">{name}</span>
|
|
);
|
|
|
|
export default PostBoardLabel; |