To import multiple objects from another file in JavaScript, you should export each of those objects individually from the other file using the export
keyword. Then you can import those objects individually in the file where you want to use them.
Here is an example of how this can be done:
In the file where you define the objects to be exported (otherfile.js
):
index.tsx143 chars10 lines
In the file where you want to use those objects:
index.tsx131 chars5 lines
In the above example, we're using destructuring assignment to import the obj1
and obj2
objects from the otherfile.js
file. We're also providing the path to the otherfile.js
using ./
to indicate that it's in the same directory as the current file.
gistlibby LogSnag