import { Button, Group } from '@mantine/core'; type CommentActionsProps = { onSave: () => void; isLoading?: boolean; }; function CommentActions({ onSave, isLoading }: CommentActionsProps) { return ( ); } export default CommentActions;