Remove cyclic dependancy on components

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
This commit is contained in:
Ananya Arun
2021-08-02 09:41:49 -07:00
committed by Facebook GitHub Bot
parent 921a65bc17
commit 19f6b29879
3 changed files with 51 additions and 36 deletions

View File

@@ -8,7 +8,7 @@
*/
import React from 'react';
import {NoDevices} from '../AppSelector';
import {NoDevices} from '../NoDevices';
export default function TroubleshootingGuide() {
return <NoDevices />;