Summary: - Minor change on Diff - D30040808 - Removed cyclic dependancy on AppSelector - Previous dependancy chain : AppSelector -> TroubleshootingGuide -> AppSelector - Now the NoDevices component that troubleshooting guide was importing has been moved to an independent file. Reviewed By: passy Differential Revision: D30041820 fbshipit-source-id: 17856aad7d2a569ec4e0f19e63f458472b22dcf8
16 lines
347 B
TypeScript
16 lines
347 B
TypeScript
/**
|
|
* 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 '../NoDevices';
|
|
|
|
export default function TroubleshootingGuide() {
|
|
return <NoDevices />;
|
|
}
|