Modernize Benchmarks CI

This commit is contained in:
Fedor Indutny
2021-08-11 12:29:07 -07:00
committed by GitHub
parent 12c78c742f
commit 61b7eebfcf
17 changed files with 149 additions and 58 deletions

View File

@@ -25,7 +25,7 @@ type PropsHousekeeping = {
export type Props = PropsData & PropsHousekeeping;
export const StartNewConversation: FunctionComponent<Props> = React.memo(
({ i18n, onClick, phoneNumber }) => {
function StartNewConversation({ i18n, onClick, phoneNumber }) {
const messageText = (
<div className={TEXT_CLASS_NAME}>{i18n('startConversation')}</div>
);