File tree Expand file tree Collapse file tree 3 files changed +7
-9
lines changed Expand file tree Collapse file tree 3 files changed +7
-9
lines changed Original file line number Diff line number Diff line change 1
1
import { Stack } from 'expo-router/build/layouts/Stack'
2
2
import { ScreenContainer } from 'apps-expo/components/layout/ScreenContainer'
3
- import { Paragraph } from '@my/ui '
3
+ import { BuyTicketsScreen } from 'app/features/sendpot/BuyTicketsScreen '
4
4
5
5
export default function BuySendpotTicketsScreen ( ) {
6
6
return (
@@ -11,7 +11,7 @@ export default function BuySendpotTicketsScreen() {
11
11
} }
12
12
/>
13
13
< ScreenContainer >
14
- < Paragraph > BuySendpotTicketsScreen </ Paragraph >
14
+ < BuyTicketsScreen / >
15
15
</ ScreenContainer >
16
16
</ >
17
17
)
Original file line number Diff line number Diff line change 1
1
import { Stack } from 'expo-router/build/layouts/Stack'
2
2
import { ScreenContainer } from 'apps-expo/components/layout/ScreenContainer'
3
- import { Paragraph } from '@my/ui '
3
+ import { ConfirmBuyTicketsScreen } from 'app/features/sendpot/ConfirmBuyTicketsScreen '
4
4
5
5
export default function ConfirmBuySendpotTicketsScreen ( ) {
6
6
return (
7
7
< >
8
8
< Stack . Screen
9
9
options = { {
10
- title : 'Buy Tickets Summary' ,
10
+ title : 'Summary' ,
11
11
} }
12
12
/>
13
13
< ScreenContainer >
14
- < Paragraph > ConfirmBuySendpotTicketsScreen </ Paragraph >
14
+ < ConfirmBuyTicketsScreen / >
15
15
</ ScreenContainer >
16
16
</ >
17
17
)
Original file line number Diff line number Diff line change 1
1
import { ScreenContainer } from 'apps-expo/components/layout/ScreenContainer'
2
2
import { Stack } from 'expo-router'
3
- import { Link , Paragraph } from '@my/ui '
3
+ import { SendPotScreen } from 'app/features/sendpot/screen '
4
4
5
5
export default function SendpotScreen ( ) {
6
6
return (
@@ -11,9 +11,7 @@ export default function SendpotScreen() {
11
11
} }
12
12
/>
13
13
< ScreenContainer >
14
- < Paragraph > SendpotScreen</ Paragraph >
15
- < Link href = { '/sendpot/buy-tickets' } > but tickets</ Link >
16
- < Link href = { '/sendpot/confirm-buy-tickets' } > confirm</ Link >
14
+ < SendPotScreen />
17
15
</ ScreenContainer >
18
16
</ >
19
17
)
You can’t perform that action at this time.
0 commit comments