diff --git a/src/screens/TransactionHistoryScreen.tsx b/src/screens/TransactionHistoryScreen.tsx new file mode 100644 index 0000000..9a435f1 --- /dev/null +++ b/src/screens/TransactionHistoryScreen.tsx @@ -0,0 +1,15 @@ +import BackgroundWithBeasyIconAndWhiteContentArea from "@components/backgrounds/BackgroundWithBeasyIconAndWhiteContentArea"; +import Text from "@components/bases/Text"; +import { LOG } from "@logger"; + +const log = LOG.extend("TransactionHistoryScreen"); + +const TransactionHistoryScreen = () => { + return ( + + Hello + + ); +}; + +export default TransactionHistoryScreen;