From 44e8072b97ec1911994736591247cf25817d881b Mon Sep 17 00:00:00 2001 From: Hoseong Son Date: Sun, 23 Mar 2025 09:44:48 +0900 Subject: [PATCH] Add children to NavigationIndependentTree --- src/Native.res | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Native.res b/src/Native.res index 6c6a1d6..693a4e4 100644 --- a/src/Native.res +++ b/src/Native.res @@ -45,7 +45,7 @@ module Linking = { module NavigationIndependentTree = { @module("@react-navigation/native") @react.component - external make: unit => React.element = "NavigationIndependentTree" + external make: (~children: React.element) => React.element = "NavigationIndependentTree" } module NavigationContainer = {