import * as React from 'react'; import { Draggable } from 'react-beautiful-dnd'; import DragZone from '../../common/DragZone'; import { TitleText } from '../../common/CustomTexts'; interface Props { id: number; name: string; color: string; index: number; settingsAreUpdating: boolean; headerOnly?: boolean; } const RoadmapPostStatus = ({ id, name, color, index, settingsAreUpdating, headerOnly, }: Props) => ( {(provided, snapshot) => (
{name}
)}
); export default RoadmapPostStatus;