diff --git a/src/Components/UploadButton.tsx b/src/Components/UploadButton.tsx index 925ecac..de6f8bb 100644 --- a/src/Components/UploadButton.tsx +++ b/src/Components/UploadButton.tsx @@ -13,18 +13,18 @@ const UploadButton: React.FC = ({ onDrop }) => { }); return ( -
+
- {isDragActive ? ( -

Drop the files here...

- ) : ( -

Select the Audio

- )} +

+ {isDragActive ? "Drop the files here..." : "Select the Audio"} +

);