Summary: This change adds a small feedback alert banner. It will have a link to our workplace feedback group. Additionally, it asks engineers to record their sessions. Reviewed By: LukeDefeo Differential Revision: D41531851 fbshipit-source-id: 7ec8ca79350e7a84ab0532065bc57187ef0055ba
17 lines
332 B
TypeScript
17 lines
332 B
TypeScript
/**
|
|
* 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.
|
|
*
|
|
* @format
|
|
*/
|
|
|
|
import React from 'react';
|
|
|
|
const FeedbackRequest: React.FC<{}> = () => {
|
|
return <></>;
|
|
};
|
|
|
|
export default FeedbackRequest;
|