├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html └── manifest.json ├── src ├── App.css ├── App.js ├── CustomTemplateDemo.js ├── MainDemo.js ├── MyCustomContentTemplate.js ├── index.css ├── index.js └── registerServiceWorker.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliancwirko/react-s-alert-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliancwirko/react-s-alert-demo/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliancwirko/react-s-alert-demo/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliancwirko/react-s-alert-demo/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliancwirko/react-s-alert-demo/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliancwirko/react-s-alert-demo/HEAD/public/manifest.json -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliancwirko/react-s-alert-demo/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliancwirko/react-s-alert-demo/HEAD/src/App.js -------------------------------------------------------------------------------- /src/CustomTemplateDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliancwirko/react-s-alert-demo/HEAD/src/CustomTemplateDemo.js -------------------------------------------------------------------------------- /src/MainDemo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliancwirko/react-s-alert-demo/HEAD/src/MainDemo.js -------------------------------------------------------------------------------- /src/MyCustomContentTemplate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliancwirko/react-s-alert-demo/HEAD/src/MyCustomContentTemplate.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliancwirko/react-s-alert-demo/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliancwirko/react-s-alert-demo/HEAD/src/index.js -------------------------------------------------------------------------------- /src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliancwirko/react-s-alert-demo/HEAD/src/registerServiceWorker.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juliancwirko/react-s-alert-demo/HEAD/yarn.lock --------------------------------------------------------------------------------