Seemingly a very simple task...
export default function() { return { googleClientID:\'xxxx\' } }
Is it the best way to export o
You can export object itself:
export default { googleClientID:'xxxx' };
The difference is that in your case you will get brand new object every time you call exported function. In this case you will get the same object every time. Depends on what you need.