Fix export style of `<LoadGap />` based on `<Domain />` (#25128)

This commit is contained in:
たいち ひ 2023-05-25 20:03:37 +09:00 committed by GitHub
parent 1d588d58f1
commit 4197b5e4c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 17 additions and 17 deletions

View File

@ -16,8 +16,7 @@ interface Props {
intl: InjectedIntl;
}
export const LoadGap = injectIntl<Props>(
({ disabled, maxId, onClick, intl }) => {
const _LoadGap: React.FC<Props> = ({ disabled, maxId, onClick, intl }) => {
const handleClick = useCallback(() => {
onClick(maxId);
}, [maxId, onClick]);
@ -32,5 +31,6 @@ export const LoadGap = injectIntl<Props>(
<Icon id='ellipsis-h' />
</button>
);
}
);
};
export const LoadGap = injectIntl(_LoadGap);