1
0
mirror of https://github.com/tooot-app/app synced 2025-04-30 01:48:52 +02:00
tooot/src/components/Menu/Container.tsx
2020-11-22 00:46:23 +01:00

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