From 95ba9d269ee656c152779dd21d5f7d39a1eae8f5 Mon Sep 17 00:00:00 2001 From: Yousef Amar Date: Mon, 25 Mar 2024 20:14:48 +0000 Subject: [PATCH] Add missing imports from Drawer example --- docs/layout-examples.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/layout-examples.md b/docs/layout-examples.md index e15e852..74b846c 100644 --- a/docs/layout-examples.md +++ b/docs/layout-examples.md @@ -270,6 +270,7 @@ Builds an app with main drawer and custom content. // App.tsx import {Navio} from 'rn-navio'; import {Home, Settings} from '@app/screens'; +import {DrawerContentScrollView, DrawerItemList, DrawerItem} from '@react-navigation/drawer'; const navio = Navio.build({ screens: {Home, Settings},