├── .DS_Store ├── README.md ├── example_backend ├── .gitignore ├── index.js ├── package-lock.json └── package.json └── frontend_demo ├── .gitignore ├── package-lock.json ├── package.json ├── public ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── robots.txt └── src ├── App.css ├── App.tsx ├── index.css └── index.tsx /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-frontend-reactjs-demo/HEAD/.DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-frontend-reactjs-demo/HEAD/README.md -------------------------------------------------------------------------------- /example_backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-frontend-reactjs-demo/HEAD/example_backend/.gitignore -------------------------------------------------------------------------------- /example_backend/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-frontend-reactjs-demo/HEAD/example_backend/index.js -------------------------------------------------------------------------------- /example_backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-frontend-reactjs-demo/HEAD/example_backend/package-lock.json -------------------------------------------------------------------------------- /example_backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-frontend-reactjs-demo/HEAD/example_backend/package.json -------------------------------------------------------------------------------- /frontend_demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-frontend-reactjs-demo/HEAD/frontend_demo/.gitignore -------------------------------------------------------------------------------- /frontend_demo/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-frontend-reactjs-demo/HEAD/frontend_demo/package-lock.json -------------------------------------------------------------------------------- /frontend_demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-frontend-reactjs-demo/HEAD/frontend_demo/package.json -------------------------------------------------------------------------------- /frontend_demo/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-frontend-reactjs-demo/HEAD/frontend_demo/public/favicon.ico -------------------------------------------------------------------------------- /frontend_demo/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-frontend-reactjs-demo/HEAD/frontend_demo/public/index.html -------------------------------------------------------------------------------- /frontend_demo/public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-frontend-reactjs-demo/HEAD/frontend_demo/public/logo192.png -------------------------------------------------------------------------------- /frontend_demo/public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-frontend-reactjs-demo/HEAD/frontend_demo/public/logo512.png -------------------------------------------------------------------------------- /frontend_demo/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-frontend-reactjs-demo/HEAD/frontend_demo/public/manifest.json -------------------------------------------------------------------------------- /frontend_demo/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-frontend-reactjs-demo/HEAD/frontend_demo/public/robots.txt -------------------------------------------------------------------------------- /frontend_demo/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-frontend-reactjs-demo/HEAD/frontend_demo/src/App.css -------------------------------------------------------------------------------- /frontend_demo/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-frontend-reactjs-demo/HEAD/frontend_demo/src/App.tsx -------------------------------------------------------------------------------- /frontend_demo/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-frontend-reactjs-demo/HEAD/frontend_demo/src/index.css -------------------------------------------------------------------------------- /frontend_demo/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-frontend-reactjs-demo/HEAD/frontend_demo/src/index.tsx --------------------------------------------------------------------------------