Add Watch Bug Information Debugger as a connectionless plugin

Differential Revision: D19211198

fbshipit-source-id: 0a63fe8077141b5221254a668ef4c0e83c7d33ea
This commit is contained in:
Ankur Sadhoo
2019-12-26 19:14:30 -08:00
committed by Facebook Github Bot
parent bc36c1607d
commit 9b5ba4decb
2 changed files with 39 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
/**
* 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>;
}
}