Lightweight React file upload component with drag-and-drop support
npm install @svar-ui/react-uploader


SVAR React Uploader is a lightweight, customizable React component for easy and intuitive file uploading, allowing users to drag and drop files or select them from their device. The component can be easily used with SVAR React Core library.
To use the uploader, simply import the package and include the component in to .jsx file:
``jsx
import { Uploader, UploaderList, useUploaderState } from "@svar-ui/react-uploader";
import "@svar-ui/react-uploader/all.css";
function MyComponent(){
const uploadURL = "http://localhost:3000/data";
const data = useUploaderState();
return (
}
``