1
0
mirror of https://github.com/tooot-app/app synced 2025-06-05 22:19:13 +02:00
Files
tooot/src/screens/Actions.tsx
Zhiyuan Zheng a40a645337 Updates
2021-02-10 00:40:44 +01:00

23 lines
526 B
TypeScript

import { StackScreenProps } from '@react-navigation/stack'
import React from 'react'
import { SafeAreaProvider } from 'react-native-safe-area-context'
import ScreenActionsRoot from './Actions/Root'
export type ScreenAccountProp = StackScreenProps<
Nav.RootStackParamList,
'Screen-Actions'
>
const ScreenActions = React.memo(
(props: ScreenAccountProp) => {
return (
<SafeAreaProvider>
<ScreenActionsRoot {...props} />
</SafeAreaProvider>
)
},
() => true
)
export default ScreenActions