in tutorials/viewer/src/index.tsx [18:28]
public componentDidMount() {
let resize = () => {
let bbox = this.container.getBoundingClientRect();
this.setState({
width: bbox.width,
height: bbox.height
});
};
resize();
window.addEventListener("resize", resize);
}