Summary: rename `SonarTitleBar` to `TitleBar`

Reviewed By: passy

Differential Revision: D9851709

fbshipit-source-id: f4b420a70d251a0ca7a5b22b66748a238c5f410a
This commit is contained in:
Daniel Büchele
2018-09-18 06:38:19 -07:00
committed by Facebook Github Bot
parent 3bea3c88e6
commit e360654b28
2 changed files with 7 additions and 7 deletions

View File

@@ -10,7 +10,7 @@ import {FlexColumn, FlexRow} from 'flipper';
import {connect} from 'react-redux';
import {toggleBugDialogVisible} from './reducers/application.js';
import WelcomeScreen from './chrome/WelcomeScreen.js';
import SonarTitleBar from './chrome/SonarTitleBar.js';
import TitleBar from './chrome/TitleBar.js';
import MainSidebar from './chrome/MainSidebar.js';
import BugReporterDialog from './chrome/BugReporterDialog.js';
import ErrorBar from './chrome/ErrorBar.js';
@@ -51,7 +51,7 @@ export class App extends React.Component<Props> {
render() {
return (
<FlexColumn fill={true}>
<SonarTitleBar />
<TitleBar />
{this.props.bugDialogVisible && (
<BugReporterDialog
bugReporter={this.props.bugReporter}