import React from 'react'; import { View, ViewProps } from 'react-native'; type ViewAtomProps = ViewProps & { }; const ViewAtom = ({ ...props }: ViewAtomProps) => { return ( {props.children} ); }; export default ViewAtom;