src
리액트 네이티브 파일 경로로 파일 객체 얻기
escher_
2021. 8. 29. 00:21
async function getFileFromPath(path: string){
const response = await fetch(path)
return await response.blob()
}