├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .prettierrc ├── .travis.yml ├── LICENSE ├── README.md ├── dist ├── index.css ├── index.d.ts ├── index.js ├── index.js.map ├── index.modern.js ├── index.modern.js.map └── index.test.d.ts ├── docs ├── .nojekyll ├── assets │ ├── highlight.css │ ├── icons.css │ ├── icons.png │ ├── icons@2x.png │ ├── main.js │ ├── search.js │ ├── style.css │ ├── widgets.png │ └── widgets@2x.png ├── index.html └── modules.html ├── example ├── README.md ├── nextjs │ ├── README.md │ ├── next-env.d.ts │ ├── next.config.js │ ├── package-lock.json │ ├── package.json │ ├── pages │ │ ├── Videocall.tsx │ │ ├── _app.tsx │ │ └── index.tsx │ ├── styles │ │ └── globals.css │ └── tsconfig.json ├── package-lock.json ├── package.json ├── public │ ├── favicon.ico │ ├── index.html │ └── manifest.json ├── src │ ├── App.tsx │ ├── index.css │ ├── index.tsx │ ├── react-app-env.d.ts │ └── setupTests.ts └── tsconfig.json ├── package.json ├── src └── index.tsx ├── tsconfig.json └── tsconfig.test.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO-Community/Agora-RTC-React/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | build/ 2 | dist/ 3 | node_modules/ 4 | .snapshots/ 5 | *.min.js -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO-Community/Agora-RTC-React/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO-Community/Agora-RTC-React/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO-Community/Agora-RTC-React/HEAD/.prettierrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO-Community/Agora-RTC-React/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO-Community/Agora-RTC-React/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO-Community/Agora-RTC-React/HEAD/README.md -------------------------------------------------------------------------------- /dist/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO-Community/Agora-RTC-React/HEAD/dist/index.css -------------------------------------------------------------------------------- /dist/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO-Community/Agora-RTC-React/HEAD/dist/index.d.ts -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO-Community/Agora-RTC-React/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO-Community/Agora-RTC-React/HEAD/dist/index.js.map -------------------------------------------------------------------------------- /dist/index.modern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO-Community/Agora-RTC-React/HEAD/dist/index.modern.js -------------------------------------------------------------------------------- /dist/index.modern.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO-Community/Agora-RTC-React/HEAD/dist/index.modern.js.map -------------------------------------------------------------------------------- /dist/index.test.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /docs/.nojekyll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO-Community/Agora-RTC-React/HEAD/docs/.nojekyll -------------------------------------------------------------------------------- /docs/assets/highlight.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO-Community/Agora-RTC-React/HEAD/docs/assets/highlight.css -------------------------------------------------------------------------------- /docs/assets/icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO-Community/Agora-RTC-React/HEAD/docs/assets/icons.css -------------------------------------------------------------------------------- /docs/assets/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO-Community/Agora-RTC-React/HEAD/docs/assets/icons.png -------------------------------------------------------------------------------- /docs/assets/icons@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO-Community/Agora-RTC-React/HEAD/docs/assets/icons@2x.png -------------------------------------------------------------------------------- /docs/assets/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO-Community/Agora-RTC-React/HEAD/docs/assets/main.js -------------------------------------------------------------------------------- /docs/assets/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO-Community/Agora-RTC-React/HEAD/docs/assets/search.js -------------------------------------------------------------------------------- /docs/assets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO-Community/Agora-RTC-React/HEAD/docs/assets/style.css -------------------------------------------------------------------------------- /docs/assets/widgets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO-Community/Agora-RTC-React/HEAD/docs/assets/widgets.png -------------------------------------------------------------------------------- /docs/assets/widgets@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO-Community/Agora-RTC-React/HEAD/docs/assets/widgets@2x.png -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO-Community/Agora-RTC-React/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO-Community/Agora-RTC-React/HEAD/docs/modules.html -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO-Community/Agora-RTC-React/HEAD/example/README.md -------------------------------------------------------------------------------- /example/nextjs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO-Community/Agora-RTC-React/HEAD/example/nextjs/README.md -------------------------------------------------------------------------------- /example/nextjs/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO-Community/Agora-RTC-React/HEAD/example/nextjs/next-env.d.ts -------------------------------------------------------------------------------- /example/nextjs/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO-Community/Agora-RTC-React/HEAD/example/nextjs/next.config.js -------------------------------------------------------------------------------- /example/nextjs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO-Community/Agora-RTC-React/HEAD/example/nextjs/package-lock.json -------------------------------------------------------------------------------- /example/nextjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO-Community/Agora-RTC-React/HEAD/example/nextjs/package.json -------------------------------------------------------------------------------- /example/nextjs/pages/Videocall.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO-Community/Agora-RTC-React/HEAD/example/nextjs/pages/Videocall.tsx -------------------------------------------------------------------------------- /example/nextjs/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO-Community/Agora-RTC-React/HEAD/example/nextjs/pages/_app.tsx -------------------------------------------------------------------------------- /example/nextjs/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO-Community/Agora-RTC-React/HEAD/example/nextjs/pages/index.tsx -------------------------------------------------------------------------------- /example/nextjs/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO-Community/Agora-RTC-React/HEAD/example/nextjs/styles/globals.css -------------------------------------------------------------------------------- /example/nextjs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO-Community/Agora-RTC-React/HEAD/example/nextjs/tsconfig.json -------------------------------------------------------------------------------- /example/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO-Community/Agora-RTC-React/HEAD/example/package-lock.json -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO-Community/Agora-RTC-React/HEAD/example/package.json -------------------------------------------------------------------------------- /example/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO-Community/Agora-RTC-React/HEAD/example/public/favicon.ico -------------------------------------------------------------------------------- /example/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO-Community/Agora-RTC-React/HEAD/example/public/index.html -------------------------------------------------------------------------------- /example/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO-Community/Agora-RTC-React/HEAD/example/public/manifest.json -------------------------------------------------------------------------------- /example/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO-Community/Agora-RTC-React/HEAD/example/src/App.tsx -------------------------------------------------------------------------------- /example/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO-Community/Agora-RTC-React/HEAD/example/src/index.css -------------------------------------------------------------------------------- /example/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO-Community/Agora-RTC-React/HEAD/example/src/index.tsx -------------------------------------------------------------------------------- /example/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /example/src/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO-Community/Agora-RTC-React/HEAD/example/src/setupTests.ts -------------------------------------------------------------------------------- /example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO-Community/Agora-RTC-React/HEAD/example/tsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO-Community/Agora-RTC-React/HEAD/package.json -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO-Community/Agora-RTC-React/HEAD/src/index.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO-Community/Agora-RTC-React/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AgoraIO-Community/Agora-RTC-React/HEAD/tsconfig.test.json --------------------------------------------------------------------------------