Need help with createDrawerNavigator

I’m learning about how to create my app on react using EXPO, but I am having an error when I’m trying to use createDrawerNavigator, I receive the message: “invariant violation: the navigation prop is missing for this navigator, in react-navigation v3 and v4 you must set up your app container directly”

This is my code:
import React from ‘react’

import { createDrawerNavigator } from ‘react-navigation-drawer’;
import Simples from ‘./components/simples’
import ParImpar from ‘./components/ParImpar’
import { Inverter, MegaSena } from ‘./components/Multi’

export default createDrawerNavigator({
MegaSena: {
screen: () => ,
navigationOptions: { title: ‘Mega Sena’ }
},
Inverter: {
screen: () => <Inverter texto={‘React Native!’} />
},
ParImpar: {
screen: () => ,
navigationOptions: { title: ‘Par ou Impar’ }
},
Simples: {
screen: () =>
}
}, {drawerWidth: 300 });

can someone help me, please?

Thanks!