Zipline-Android-App/components/Button.tsx

13 lines
No EOL
198 B
TypeScript

interface Props {
onPress: () => void | Promise<void>;
disabled?: boolean;
}
export default function Button({
onPress = () => {},
disabled = false
}) {
return (
)
}