import React from 'react'; import { View } from 'react-native'; import { useTheme } from '../../theme/useTheme'; import type { StackProps, HStackProps, VStackProps } from './Stack.types'; export const Stack: React.FC = ({ direction = 'vertical', spacing = 'md', align, justify, wrap = false, style, children, ...viewProps }) => { const theme = useTheme(); return ( {children} ); }; export const HStack: React.FC = (props) => ( ); export const VStack: React.FC = (props) => ( );