├── .gitignore ├── README.md ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt ├── src ├── Home │ ├── index.css │ └── index.js ├── SupportAdmin │ └── index.js ├── SupportEngine │ ├── Avatar.js │ ├── SupportWindow │ │ ├── ChatEngine.js │ │ ├── EmailForm.js │ │ └── index.js │ ├── index.js │ └── styles.js ├── index.css └── index.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alamorre/react-support-engine/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alamorre/react-support-engine/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alamorre/react-support-engine/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alamorre/react-support-engine/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alamorre/react-support-engine/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alamorre/react-support-engine/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alamorre/react-support-engine/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alamorre/react-support-engine/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alamorre/react-support-engine/HEAD/public/robots.txt -------------------------------------------------------------------------------- /src/Home/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alamorre/react-support-engine/HEAD/src/Home/index.css -------------------------------------------------------------------------------- /src/Home/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alamorre/react-support-engine/HEAD/src/Home/index.js -------------------------------------------------------------------------------- /src/SupportAdmin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alamorre/react-support-engine/HEAD/src/SupportAdmin/index.js -------------------------------------------------------------------------------- /src/SupportEngine/Avatar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alamorre/react-support-engine/HEAD/src/SupportEngine/Avatar.js -------------------------------------------------------------------------------- /src/SupportEngine/SupportWindow/ChatEngine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alamorre/react-support-engine/HEAD/src/SupportEngine/SupportWindow/ChatEngine.js -------------------------------------------------------------------------------- /src/SupportEngine/SupportWindow/EmailForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alamorre/react-support-engine/HEAD/src/SupportEngine/SupportWindow/EmailForm.js -------------------------------------------------------------------------------- /src/SupportEngine/SupportWindow/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alamorre/react-support-engine/HEAD/src/SupportEngine/SupportWindow/index.js -------------------------------------------------------------------------------- /src/SupportEngine/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alamorre/react-support-engine/HEAD/src/SupportEngine/index.js -------------------------------------------------------------------------------- /src/SupportEngine/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alamorre/react-support-engine/HEAD/src/SupportEngine/styles.js -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alamorre/react-support-engine/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alamorre/react-support-engine/HEAD/src/index.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alamorre/react-support-engine/HEAD/yarn.lock --------------------------------------------------------------------------------