Differential Revision: D19211198 fbshipit-source-id: 0a63fe8077141b5221254a668ef4c0e83c7d33ea
18 lines
398 B
TypeScript
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>;
|
|
}
|
|
}
|