Initial commit

This commit is contained in:
MarcUs7i 2025-03-18 22:52:59 +01:00
commit 880a5e58cc
51 changed files with 37278 additions and 0 deletions

View file

@ -0,0 +1,21 @@
/** @format */
import { useState } from 'react';
import Searchbtn from '../Ui/Searchbtn';
import Dropzone from './DropZone/DropZone';
import { Container } from './Fileuploadstyle';
export const Fileupload = () => {
const [showurl, setShowurl] = useState(false);
const toggleurl = () => {
setShowurl(prevstate => !prevstate);
};
return (
<Container>
<Dropzone showurl={showurl} toggleurl={toggleurl} />
<Searchbtn />
</Container>
);
};
export default Fileupload;