Files
flipper/src/fb-stubs/WatchTools.tsx
Ankur Sadhoo 9b5ba4decb Add Watch Bug Information Debugger as a connectionless plugin
Differential Revision: D19211198

fbshipit-source-id: 0a63fe8077141b5221254a668ef4c0e83c7d33ea
2019-12-26 19:25:09 -08:00

18 lines
398 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, {Component} from 'react';
import {Text} from '../ui';
export default class extends Component<void, void> {
render() {
return <Text>Debug Videos on Watch Bugs.</Text>;
}
}