N
Size: a a a
N
N

N

ЕФ
AG
OS
ЕЛ
N
OS
AG
OS
N
V
V
ЕЛ
V
N

ИВ
d
import * as React from 'react';
export type MemoChildrenProps = {
shouldUpdate: boolean;
children: React.ReactNode;
}
export default React.memo(({children}: MemoChildrenProps) =>
children as React.ReactElement, (_, {shouldUpdate}) => !shouldUpdate
);