mirror of
https://github.com/tooot-app/app
synced 2025-04-30 01:48:52 +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
|