mirror of
https://github.com/tooot-app/app
synced 2025-06-05 22:19:13 +02:00
9 lines
186 B
TypeScript
9 lines
186 B
TypeScript
import React from 'react'
|
|
import { View } from 'react-native'
|
|
|
|
const MenuContainer: React.FC = ({ ...props }) => {
|
|
return <View>{props.children}</View>
|
|
}
|
|
|
|
export default MenuContainer
|