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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
17 changed files with 149 additions and 58 deletions

View file

@ -86,7 +86,7 @@ export type Props = {
const MAX_LENGTH = 64 * 1024;
const BASE_CLASS_NAME = 'module-composition-input';
export const CompositionInput: React.ComponentType<Props> = props => {
export function CompositionInput(props: Props): React.ReactElement {
const {
i18n,
disabled,
@ -644,4 +644,4 @@ export const CompositionInput: React.ComponentType<Props> = props => {
</Reference>
</Manager>
);
};
}