/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow */ import * as React from 'react'; import {isInternalFacebookBuild} from 'react-devtools-feature-flags'; import {REACT_DEVTOOLS_WORKPLACE_URL} from 'react-devtools-shared/src/devtools/constants'; import Icon from '../Icon'; import styles from './shared.css'; export default function WorkplaceGroup(): React.Node { if (!isInternalFacebookBuild) { return null; } return (
Report this on Workplace
(Facebook employees only.)
); }