render()

in src/js/components/App.react.js [57:88]


  render() {
    return (
      <div id="wrapper">
        <NUXTour {...this.props} />
        <header>
          <div className="header-buttons">
            <NUX {...this.props} />
            <BugReporter {...this.props} />
          </div>
          <img
            src="../img/icon-nobg.svg"
            width="48"
            height="48"
            className="logo"
          />
          <h1>
            <span className="ia">Instant Articles</span>{' '}
            <span className="app-name">Builder</span>
          </h1>
        </header>
        <div id="content-wrapper">
          <main id="content">
            <Browser {...this.props} />
          </main>
          <nav id="nav">
            <RuleList {...this.props} />
          </nav>
        </div>
        <UpdateNotice {...this.props} />
      </div>
    );
  }