├── .gitignore ├── LICENSE ├── README.md ├── components ├── Reactors.jsx └── Settings.jsx ├── index.js ├── manifest.json └── style.scss /.gitignore: -------------------------------------------------------------------------------- 1 | .vscode 2 | .idea -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaimeadf/who-reacted/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaimeadf/who-reacted/HEAD/README.md -------------------------------------------------------------------------------- /components/Reactors.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaimeadf/who-reacted/HEAD/components/Reactors.jsx -------------------------------------------------------------------------------- /components/Settings.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaimeadf/who-reacted/HEAD/components/Settings.jsx -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaimeadf/who-reacted/HEAD/index.js -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaimeadf/who-reacted/HEAD/manifest.json -------------------------------------------------------------------------------- /style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaimeadf/who-reacted/HEAD/style.scss --------------------------------------------------------------------------------