File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Expand file tree Collapse file tree 2 files changed +4
-5
lines changed 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 { SwapFormScreen } from 'app/features/swap/form/screen '
4
4
5
5
export default function TradeScreen ( ) {
6
6
return (
@@ -11,8 +11,7 @@ export default function TradeScreen() {
11
11
} }
12
12
/>
13
13
< ScreenContainer >
14
- < Paragraph > TradeScreen</ Paragraph >
15
- < Link href = { '/trade/summary' } > summary</ Link >
14
+ < SwapFormScreen />
16
15
</ ScreenContainer >
17
16
</ >
18
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 { SwapSummaryScreen } from 'app/features/swap/summary/screen '
4
4
5
5
export default function TradeSummaryScreen ( ) {
6
6
return (
@@ -11,7 +11,7 @@ export default function TradeSummaryScreen() {
11
11
} }
12
12
/>
13
13
< ScreenContainer >
14
- < Paragraph > TradeSummaryScreen </ Paragraph >
14
+ < SwapSummaryScreen / >
15
15
</ ScreenContainer >
16
16
</ >
17
17
)
You can’t perform that action at this time.
0 commit comments