fix: remove optional type indicators

This commit is contained in:
kyranjamie
2020-06-10 15:30:03 +02:00
committed by kyranjamie
parent b9f7b9cd64
commit 7375775669

View File

@@ -1,9 +1,9 @@
import { useState } from 'react';
interface Clipboard {
value?: string;
onCopy?: () => void;
hasCopied?: boolean;
value: string;
onCopy: () => void;
hasCopied: boolean;
}
/**