Seemingly a very simple task...
export default function() { return { googleClientID:\'xxxx\' } }
Is it the best way to export o
You can simply export an object
export default { googleClientID:'xxxx' };
A default export can be a function, a class, an object or anything else. This value is to be considered as the "main" exported value since it will be the simplest to import.