Migrate ErrorBar from .js to .tsx

Summary: Migrated the ErrorBar from JS to TS.

Reviewed By: passy

Differential Revision: D16730539

fbshipit-source-id: 3fd8c90f218f7a1d666c3d47380d56868c1cd23f
This commit is contained in:
Benjamin Elo
2019-08-12 05:49:44 -07:00
committed by Facebook Github Bot
parent 12704269d7
commit f7896a1f2b
2 changed files with 7 additions and 2 deletions

View File

@@ -12,7 +12,7 @@ import WelcomeScreen from './chrome/WelcomeScreen.tsx';
import TitleBar from './chrome/TitleBar.tsx'; import TitleBar from './chrome/TitleBar.tsx';
import MainSidebar from './chrome/MainSidebar.js'; import MainSidebar from './chrome/MainSidebar.js';
import BugReporterDialog from './chrome/BugReporterDialog.js'; import BugReporterDialog from './chrome/BugReporterDialog.js';
import ErrorBar from './chrome/ErrorBar.js'; import ErrorBar from './chrome/ErrorBar.tsx';
import ShareSheet from './chrome/ShareSheet.js'; import ShareSheet from './chrome/ShareSheet.js';
import SignInSheet from './chrome/SignInSheet.js'; import SignInSheet from './chrome/SignInSheet.js';
import ExportDataPluginSheet from './chrome/ExportDataPluginSheet.js'; import ExportDataPluginSheet from './chrome/ExportDataPluginSheet.js';

View File

@@ -6,6 +6,7 @@
*/ */
import {styled, colors} from 'flipper'; import {styled, colors} from 'flipper';
import React from 'react';
const ErrorBarContainer = styled('div')({ const ErrorBarContainer = styled('div')({
backgroundColor: colors.cherry, backgroundColor: colors.cherry,
@@ -19,7 +20,11 @@ const ErrorBarContainer = styled('div')({
zIndex: 2, zIndex: 2,
}); });
export default function ErrorBar(props: {|text: ?string|}) { type Props = {
text: string | null | undefined;
};
export default function ErrorBar(props: Props) {
if (props.text == null) { if (props.text == null) {
return null; return null;
} else { } else {