feat: mobile web bridge (#1597)
This commit is contained in:
16
packages/mobile/src/MobileWebApp.tsx
Normal file
16
packages/mobile/src/MobileWebApp.tsx
Normal file
@@ -0,0 +1,16 @@
|
||||
import { navigationRef } from '@Lib/NavigationService'
|
||||
import { NavigationContainer } from '@react-navigation/native'
|
||||
import React from 'react'
|
||||
import { MobileWebMainStackComponent } from './ModalStack'
|
||||
|
||||
const AppComponent: React.FC = () => {
|
||||
return (
|
||||
<NavigationContainer ref={navigationRef}>
|
||||
<MobileWebMainStackComponent />
|
||||
</NavigationContainer>
|
||||
)
|
||||
}
|
||||
|
||||
export const MobileWebApp = () => {
|
||||
return <AppComponent />
|
||||
}
|
||||
Reference in New Issue
Block a user