Skip to content

Commit

Permalink
fix BottomsTabs options type
Browse files Browse the repository at this point in the history
  • Loading branch information
Freddy03h committed Mar 25, 2024
1 parent dd74958 commit 22db822
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/BottomTabs.res
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ type rec options = {
tabBarBadgeStyle?: Style.t,
tabBarAccessibilityLabel?: string,
tabBarTestID?: string,
tabBarButton: unit => React.element, // TODO: props
tabBarButton?: unit => React.element, // TODO: props
tabBarColor?: Color.t,
tabBarActiveTintColor?: string,
tabBarInactiveTintColor?: string,
Expand All @@ -41,8 +41,8 @@ type rec options = {
tabBarStyle?: Style.t,
tabBarBackground?: unit => React.element,
\"lazy"?: bool,
unmountOnBlur: bool,
freezeOnBlur: bool,
unmountOnBlur?: bool,
freezeOnBlur?: bool,
header?: headerParams => React.element,
headerShown?: bool,
// Header props from https://reactnavigation.org/docs/elements#header
Expand Down

0 comments on commit 22db822

Please sign in to comment.