-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refector: fix code to complie ts rules
- Loading branch information
Thammarong Glomjai
committed
Nov 14, 2024
1 parent
9b238b6
commit 6f55967
Showing
4 changed files
with
59 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
import { Box, Text, Flex, Card, Avatar } from '@radix-ui/themes' | ||
import { Container } from '@radix-ui/themes' | ||
|
||
export const Transaction = () => ( | ||
<Box maxWidth="240px"> | ||
<Card> | ||
|
||
</Card> | ||
</Box> | ||
) | ||
export const Transaction = () => { | ||
return ( | ||
<Container data-testid="transaction-page" maxWidth="1" className="min-h-screen"> | ||
<div className="max-w-screen-xl mx-auto px-4"></div> | ||
</Container> | ||
) | ||
} |