diff --git a/desktop/app/src/sandy-chrome/appinspect/AppSelector.tsx b/desktop/app/src/sandy-chrome/appinspect/AppSelector.tsx index 368691f7e..bd4f85bd3 100644 --- a/desktop/app/src/sandy-chrome/appinspect/AppSelector.tsx +++ b/desktop/app/src/sandy-chrome/appinspect/AppSelector.tsx @@ -31,6 +31,7 @@ import Client from '../../Client'; import {State} from '../../reducers'; import {brandColors, brandIcons, colors} from '../../ui/components/colors'; import {showEmulatorLauncher} from './LaunchEmulator'; +import TroubleshootingGuide from './fb-stubs/TroubleshootingGuide'; const {Text, Link, Title} = Typography; @@ -109,7 +110,7 @@ export function AppSelector() { ) : ( - + ); } @@ -265,7 +266,7 @@ function ClientTitle({client}: {client: Client}) { ); } -function NoDevices() { +export function NoDevices() { const store = useStore(); const onLaunchEmulator = useTrackedCallback( diff --git a/desktop/app/src/sandy-chrome/appinspect/fb-stubs/TroubleshootingGuide.tsx b/desktop/app/src/sandy-chrome/appinspect/fb-stubs/TroubleshootingGuide.tsx new file mode 100644 index 000000000..0cb44dfee --- /dev/null +++ b/desktop/app/src/sandy-chrome/appinspect/fb-stubs/TroubleshootingGuide.tsx @@ -0,0 +1,15 @@ +/** + * Copyright (c) Facebook, Inc. and its affiliates. + * + * This source code is licensed under the MIT license found in the + * LICENSE file in the root directory of this source tree. + * + * @format + */ + +import React from 'react'; +import {NoDevices} from '../AppSelector'; + +export default function TroubleshootingGuide() { + return ; +}