import { StyleSheet, View } from 'react-native'; import { views } from './styles'; import type { ICenterProps } from './types'; export default function Column(props: ICenterProps) { const { children, style } = props; return ( {children} ); }