mirror of https://github.com/tooot-app/app
21 lines
511 B
TypeScript
21 lines
511 B
TypeScript
import React from 'react'
|
|
import { StyleSheet, View } from 'react-native'
|
|
import { StyleConstants } from '@utils/styles/constants'
|
|
|
|
export interface Props {
|
|
children: React.ReactNode
|
|
}
|
|
|
|
const MenuContainer: React.FC<Props> = ({ children }) => {
|
|
return <View style={styles.base}>{children}</View>
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
base: {
|
|
paddingHorizontal: StyleConstants.Spacing.Global.PagePadding,
|
|
marginBottom: StyleConstants.Spacing.Global.PagePadding
|
|
}
|
|
})
|
|
|
|
export default MenuContainer
|