diff --git a/addons-web-sdk/samples/hello-world-react-ts-vite/README.md b/addons-web-sdk/samples/hello-world-react-ts-vite/README.md index 7af79b8..46e713c 100644 --- a/addons-web-sdk/samples/hello-world-react-ts-vite/README.md +++ b/addons-web-sdk/samples/hello-world-react-ts-vite/README.md @@ -1,3 +1,5 @@ # React TypeScript example -This "hello, world!" add-on is built using React, TypeScript, and Vite in order to show how a React app can be modified to work as an add-on. +This "hello, world!" add-on is built using React, TypeScript, and Vite in order to show how a React app can be modified to work as an add-on. It is very similar to the sample at , but the basic structure is a multi-page React app. Please see other samples at to learn more advanced functionality! + +You can view a deployed version of this Add-on at and its corresponding [MainStage.html](https://googleworkspace.github.io/meet/hello-world-react-ts-vite/MainStage.html). diff --git a/addons-web-sdk/samples/hello-world-react-ts-vite/src/MainStage.html b/addons-web-sdk/samples/hello-world-react-ts-vite/src/MainStage.html index 158e9ff..6f21f40 100644 --- a/addons-web-sdk/samples/hello-world-react-ts-vite/src/MainStage.html +++ b/addons-web-sdk/samples/hello-world-react-ts-vite/src/MainStage.html @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/addons-web-sdk/samples/hello-world-react-ts-vite/src/SidePanel.html b/addons-web-sdk/samples/hello-world-react-ts-vite/src/SidePanel.html index 2ecebd0..69c4cbc 100644 --- a/addons-web-sdk/samples/hello-world-react-ts-vite/src/SidePanel.html +++ b/addons-web-sdk/samples/hello-world-react-ts-vite/src/SidePanel.html @@ -11,4 +11,4 @@ - \ No newline at end of file + diff --git a/addons-web-sdk/samples/hello-world-react-ts-vite/src/constants.ts b/addons-web-sdk/samples/hello-world-react-ts-vite/src/constants.ts index fc62dd2..3ac2d1f 100644 --- a/addons-web-sdk/samples/hello-world-react-ts-vite/src/constants.ts +++ b/addons-web-sdk/samples/hello-world-react-ts-vite/src/constants.ts @@ -13,5 +13,5 @@ // limitations under the License. // TODO: Make sure that you modify these constants, if you fork this! -export const CLOUD_PROJECT_NUMBER: string = "12345678910"; +export const CLOUD_PROJECT_NUMBER: string = "989911054302"; export const MAIN_STAGE_URL: string = "https://googleworkspace.github.io/meet/hello-world-react-ts-vite/MainStage.html" diff --git a/addons-web-sdk/samples/hello-world/README.md b/addons-web-sdk/samples/hello-world/README.md index 54558e1..251a6cf 100644 --- a/addons-web-sdk/samples/hello-world/README.md +++ b/addons-web-sdk/samples/hello-world/README.md @@ -1,3 +1,5 @@ # Hello, World: The Add-on -This is approximately the simplest possible add-on. The only requirements to get started here are npm and GitHub. The intent of publishing this add-on is to demonstrate how easy it is to get started with rendering custom content using an add-on. Please see other samples at to learn more advanced functionality! +This is approximately the simplest possible Meet add-on. The only requirements to get started here are npm and GitHub. The intent of publishing this add-on is to demonstrate how easy it is to get started with rendering custom content using an add-on. Please see other samples at to learn more advanced functionality! + +You can view a deployed version of this Add-on at and its corresponding [MainStage.html](https://googleworkspace.github.io/meet/hello-world/MainStage.html). diff --git a/addons-web-sdk/samples/hello-world/src/index.js b/addons-web-sdk/samples/hello-world/src/index.js index 6b4d79f..1768ae7 100644 --- a/addons-web-sdk/samples/hello-world/src/index.js +++ b/addons-web-sdk/samples/hello-world/src/index.js @@ -15,7 +15,7 @@ import { meet } from '@googleworkspace/meet-addons/meet.addons'; // TODO: Make sure that you modify these constants, if you fork this! -const CLOUD_PROJECT_NUMBER = "12345678910"; +const CLOUD_PROJECT_NUMBER = "989911054302"; const MAIN_STAGE_URL = "https://googleworkspace.github.io/meet/hello-world/MainStage.html" /**