mirror of
https://github.com/Stef-00012/Zipline-Android-App.git
synced 2025-05-11 10:25:59 +02:00
13 lines
No EOL
198 B
TypeScript
13 lines
No EOL
198 B
TypeScript
interface Props {
|
|
onPress: () => void | Promise<void>;
|
|
disabled?: boolean;
|
|
}
|
|
|
|
export default function Button({
|
|
onPress = () => {},
|
|
disabled = false
|
|
}) {
|
|
return (
|
|
|
|
)
|
|
} |