diff options
Diffstat (limited to 'src/tours/Debug.tsx')
-rw-r--r-- | src/tours/Debug.tsx | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/src/tours/Debug.tsx b/src/tours/Debug.tsx deleted file mode 100644 index ba643a802..000000000 --- a/src/tours/Debug.tsx +++ /dev/null @@ -1,18 +0,0 @@ -import React from 'react' -import {useTourGuideController} from 'rn-tourguide' - -import {Button} from '#/components/Button' -import {Text} from '#/components/Typography' - -export function TourDebugButton() { - const {start} = useTourGuideController('home') - return ( - <Button - label="Start tour" - onPress={() => { - start() - }}> - {() => <Text>t</Text>} - </Button> - ) -} |