diff --git a/src/components/BottomNavigation/BottomNavigation.tsx b/src/components/BottomNavigation/BottomNavigation.tsx index 89b892fb12..0fcc79f85d 100644 --- a/src/components/BottomNavigation/BottomNavigation.tsx +++ b/src/components/BottomNavigation/BottomNavigation.tsx @@ -323,6 +323,8 @@ const SceneComponent = React.memo(({ component, ...rest }: any) => * * const RecentsRoute = () => Recents; * + * const NotificationsRoute = () => Notifications; + * * const MyComponent = () => { * const [index, setIndex] = React.useState(0); * const [routes] = React.useState([ @@ -336,6 +338,7 @@ const SceneComponent = React.memo(({ component, ...rest }: any) => * music: MusicRoute, * albums: AlbumsRoute, * recents: RecentsRoute, + * notifications: NotificationsRoute, * }); * * return (