├── .gitignore ├── README.md ├── assets └── images │ └── Screenshot 2022-10-06 at 3.50.58 PM.png ├── package.json ├── public └── index.html └── src ├── App.css ├── App.js ├── components ├── Footer.css └── Footer.jsx └── index.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainsadaqat/annoying-submit-button/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainsadaqat/annoying-submit-button/HEAD/README.md -------------------------------------------------------------------------------- /assets/images/Screenshot 2022-10-06 at 3.50.58 PM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainsadaqat/annoying-submit-button/HEAD/assets/images/Screenshot 2022-10-06 at 3.50.58 PM.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainsadaqat/annoying-submit-button/HEAD/package.json -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainsadaqat/annoying-submit-button/HEAD/public/index.html -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainsadaqat/annoying-submit-button/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainsadaqat/annoying-submit-button/HEAD/src/App.js -------------------------------------------------------------------------------- /src/components/Footer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainsadaqat/annoying-submit-button/HEAD/src/components/Footer.css -------------------------------------------------------------------------------- /src/components/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainsadaqat/annoying-submit-button/HEAD/src/components/Footer.jsx -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zainsadaqat/annoying-submit-button/HEAD/src/index.js --------------------------------------------------------------------------------