From 9bfeb6992c73452093ba534f0e3a7492f0d1de39 Mon Sep 17 00:00:00 2001 From: wayanrivan Date: Tue, 25 Mar 2025 13:35:19 +0700 Subject: [PATCH] update --- src/pages/transaction/transaction.tsx | 44 +++++++++++++-------------- 1 file changed, 21 insertions(+), 23 deletions(-) diff --git a/src/pages/transaction/transaction.tsx b/src/pages/transaction/transaction.tsx index 0aacee6..cacee7f 100644 --- a/src/pages/transaction/transaction.tsx +++ b/src/pages/transaction/transaction.tsx @@ -1,33 +1,31 @@ import { Container, DataGridInner } from '@/components'; import { TransactionProvider } from './hooks/TransactionContext'; - import { Breadcrumbs, Link } from '@mui/material'; const Transaction = () => { - return ( - - -

TRANSACTION

- - - Dashboard - + return ( + + +

TRANSACTION

+ + + Dashboard + - - Master Data - + + Master Data + - - Transaction - - -
- -
- -
-
- ); + + Transaction + +
+
+ +
+
+
+ ); }; export default Transaction;