- parse and register /sw.js
a. Install
- install the service worker.
b. Installed
- ther service worker was installed successfully and waiting for activation (some other instance service worker is installed)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
console.stdlog = console.log.bind(console); | |
console.logs = []; | |
console.log = function(){ | |
console.logs.push(Array.from(arguments)); | |
console.stdlog.apply(console, arguments); | |
} | |
console.stderror = console.error.bind(console); | |
console.errors = []; | |
console.error = function(){ | |
console.errors.push(Array.from(arguments)); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Grid container> | |
<Grid item container spacing={32}> | |
<Grid item xs={12}> | |
<Typography variant='display2' align='center'>Heading</Typography> | |
</Grid> | |
<Grid container> | |
<Grid item xs={5}> | |
<div> | |
<img | |
style={{height: '100%', width: '250px'}}src="https://www.google.co.in/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png" /> |