import { Button, Group } from "@mantine/core"; import { useTranslation } from "react-i18next"; type CommentActionsProps = { onSave: () => void; isLoading?: boolean; }; function CommentActions({ onSave, isLoading }: CommentActionsProps) { const { t } = useTranslation(); return ( ); } export default CommentActions;