Skip to content

Instantly share code, notes, and snippets.

@DZuz14
Created June 13, 2021 15:41
Show Gist options
  • Save DZuz14/9d9f2d20a7c75af509c16e4fa1d54e3d to your computer and use it in GitHub Desktop.
Save DZuz14/9d9f2d20a7c75af509c16e4fa1d54e3d to your computer and use it in GitHub Desktop.
import { useState, useEffect } from 'react';
export const useFileUpload = () => {
const [files, setFilesState] = useState([])
const setFiles = files => {
setFilesState(Array.from(files))
}
return {
files,
setFiles
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment