fix: deriver props type checking
This commit is contained in:
parent
2ef9d5e346
commit
a4b24313a0
1 changed files with 1 additions and 1 deletions
|
@ -57,7 +57,7 @@ type ReactDeriver<Props extends {}> = (
|
|||
*/
|
||||
export function deriver<Props extends {}>(
|
||||
Component: React.ComponentType<Props>,
|
||||
): ReactDeriver<Props> {
|
||||
): ReactDeriver<Omit<Props, keyof JSX.IntrinsicAttributes>> {
|
||||
const finalComp = React.memo(
|
||||
React.forwardRef(function deriverRender(
|
||||
props: Record<string, $IntentionalAny>,
|
||||
|
|
Loading…
Reference in a new issue