From 9f03cc5a0983e05515d3d194204a7c9eb71b383d Mon Sep 17 00:00:00 2001 From: Krzysztof Moch Date: Wed, 11 Jun 2025 08:36:37 +0200 Subject: [PATCH] fix(web): add missing component type --- src/Video.web.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Video.web.tsx b/src/Video.web.tsx index cfd58639..611d3bd1 100644 --- a/src/Video.web.tsx +++ b/src/Video.web.tsx @@ -23,7 +23,7 @@ interface WebVideoElementProps // styles. // // See -function WebVideo(props: WebVideoElementProps) { +function WebVideo(props: WebVideoElementProps): React.JSX.Element { return unstable_createElement('video', props); }