public componentDidMount()

in src/components/App.tsx [66:73]


  public componentDidMount () {
    this.mounted = true
    this.props.schema.then((schema) => {
      if (this.mounted) {
        this.setState({ ...this.state, schema })
      }
    }).catch(() => {/* don't care for now */})
  }