Migrate desktopDevice.js to tsx

Summary: As per the title

Reviewed By: jknoxville

Differential Revision: D16690092

fbshipit-source-id: bcb9a0e5a1e05849dd1f470fdd8d54b898f79695
This commit is contained in:
Pritesh Nandgaonkar
2019-08-09 07:47:34 -07:00
committed by Facebook Github Bot
parent c3807a6ba2
commit 86642816fb
2 changed files with 5 additions and 5 deletions

View File

@@ -5,11 +5,11 @@
* @format
*/
import type {Store} from '../reducers/index.tsx';
import type {Logger} from '../fb-interfaces/Logger.js';
import {Store} from '../reducers/index';
import {Logger} from '../fb-interfaces/Logger.js';
import MacDevice from '../devices/MacDevice.tsx';
import WindowsDevice from '../devices/WindowsDevice.tsx';
import MacDevice from '../devices/MacDevice';
import WindowsDevice from '../devices/WindowsDevice';
export default (store: Store, logger: Logger) => {
let device;

View File

@@ -7,7 +7,7 @@
import androidDevice from './androidDevice.tsx';
import iOSDevice from './iOSDevice';
import desktopDevice from './desktopDevice';
import desktopDevice from './desktopDevice.tsx';
import application from './application.tsx';
import tracking from './tracking.tsx';
import server from './server.tsx';