// This is called declarative React code because a a developer, I am telling React what I want to happen in my UI and letting React figure out the steps of how to update the DOM on my behalf. Normal JavaScript code would be imperative. const app = document.getElementById("app"); async function goShowMe() { /*Do stuff */ const response = await fetch("index.json"); const sections = await response.json(); function Header(props) { return (

{props.title ? props.title : "GoShow.me"}

); } function Wrapper() { return (

The following is an index of Matterport SDK examples that I have written to share with other customers / developers to help them in their journey using our SDKs.

I would put them on Github, but sometimes seeing things run works a little better. Questions? Send an email to developer @ matterport dot com!

); } function Sections() { return (
{sections.map((section, index) => (

{section.title}

{section.description ? section.description : ""}

))}
); } function HomePage() { return (
); } ReactDOM.render(, app); } goShowMe();