Following documentation and trying to use extension I got Identifier 'app' has already been declared error right at the beginning. This is because I'm already using app global variable for my application. You should either use some unique name or even better make use of IIFE to avoid polluting global namespace.
Following documentation and trying to use extension I got
Identifier 'app' has already been declarederror right at the beginning. This is because I'm already usingappglobal variable for my application. You should either use some unique name or even better make use of IIFE to avoid polluting global namespace.