Skip to content

Instantly share code, notes, and snippets.

@sagar-ganatra
Created June 23, 2019 12:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sagar-ganatra/ea66c1159bd32d361e21afd82d85f056 to your computer and use it in GitHub Desktop.
Save sagar-ganatra/ea66c1159bd32d361e21afd82d85f056 to your computer and use it in GitHub Desktop.
export function initApp() {
return () => {
return new Promise((resolve) => {
setTimeout(() => {
console.log('In initApp');
resolve();
}, 3000);
});
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment