import { upload } from "thirdweb/storage";
const uri = await upload({
 client,
 files: [
   {
     name: "something",
     data: {
       hello: "world",
     },
   },
 ],
});
 
### Uploading files
 
```ts
import { upload } from "thirdweb/storage";
const uri = await upload({
 client,
 files: [
   new File(["hello world"], "hello.txt"),
 ],
});