From eb29379b3031ccdaa116d7ccfa9e03c429693ffd Mon Sep 17 00:00:00 2001 From: G Date: Tue, 28 May 2024 16:05:24 +0000 Subject: [PATCH] basic of the transactios history screen --- src/screens/TransactionHistoryScreen.tsx | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/screens/TransactionHistoryScreen.tsx 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; -- libgit2 0.27.1