Skip to content

Instantly share code, notes, and snippets.

@yoavniran
Created May 21, 2020 21:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yoavniran/edfc3d5858b286b8c4321f34b9cd6f12 to your computer and use it in GitHub Desktop.
Save yoavniran/edfc3d5858b286b8c4321f34b9cd6f12 to your computer and use it in GitHub Desktop.
React-Uploady preview with progress demo - app.jsx
import Uploady from "@rpldy/uploady";
import UploadWithProgressPreview from "./UploadWithProgressPreview";
const App = > () {
return (
<Uploady
destination={{ url: "[upload-url]" }}
>
<div className="App">
<h1>Hello React Uploady</h1>
<UploadWithProgressPreview />
</div>
</Uploady>
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment