I am trying to import a single function from a functions file. The functions file looks like this.
const Functions = { url(path = \'\') { path =
If you use 'default export' then the import should be:
import Functions from "../Utils/Functions";
Actually, you can import it with any identifier you like (not only 'Functions')