import * as React from "react"; import { t } from "i18next"; interface AddButtonProps { active: boolean; click: React.EventHandler; } export function AddButton({active, click}: AddButtonProps) { if (!active) { return
; } return ; }