Skip to content

Commit

Permalink
docs: fix lint on example app
Browse files Browse the repository at this point in the history
  • Loading branch information
edavism committed Aug 30, 2024
1 parent b13421a commit 36d549e
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions example/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,8 @@ export default function App() {

return (
<View style={styles.container}>
<TextInput
id={'id'}
onChangeText={setId}
placeholder={'PaymentId'}
></TextInput>
<Button title={'Start'} onPress={start}></Button>
<TextInput id={'id'} onChangeText={setId} placeholder={'PaymentId'} />
<Button title={'Start'} onPress={start} />
<Text>OperationId: {result?.operationId}</Text>
<Text>Result: {result?.result}</Text>
<Text>ExitTitle: {result?.exitTitle}</Text>
Expand Down

0 comments on commit 36d549e

Please sign in to comment.