From 47ffb7368c1591b7a5ec798fc704c5cb87462712 Mon Sep 17 00:00:00 2001 From: Ron Park <47266692+ronparkdev@users.noreply.github.com> Date: Wed, 28 Sep 2022 14:12:12 +0900 Subject: [PATCH] fix: change deprecated React.SFC to React.FC --- types/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/index.d.ts b/types/index.d.ts index 770a77179..4c6b083a6 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -105,7 +105,7 @@ export type WrappedComponentFactory

= (props: P) => JSX.Element; export type WrappedComponent

= | React.ComponentClass

- | React.SFC

+ | React.FC

| WrappedComponentFactory

; export function SortableContainer

(