import { Button as TamaguiButton } from 'tamagui'; interface ButtonProps { children?: string | undefined; onPress?: () => void | undefined; disabled?: boolean | undefined; } export default function Button(props: ButtonProps): React.JSX.Element { return ( { props.children } ) }