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:
committed by
Facebook Github Bot
parent
c3807a6ba2
commit
86642816fb
@@ -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;
|
||||
@@ -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';
|
||||
|
||||
Reference in New Issue
Block a user