category ticket

This commit is contained in:
hamid zarghami
2025-01-25 15:53:12 +03:30
parent 0861501f48
commit 2098b9409a
7 changed files with 219 additions and 4 deletions
+4 -1
View File
@@ -13,6 +13,7 @@ import { SideBarItemHasSubMenu } from '../config/SideBarSubMenu'
import TransactionsSubMenu from './components/TransactionsSubMenu'
import ReceiptSubMenu from './components/ReceiptSubMenu'
import CustomerSubMenu from './components/CustomerSubMenu'
import TicketSubMenu from './components/TicketSubMenu'
const SideBar: FC = () => {
@@ -256,7 +257,9 @@ const SideBar: FC = () => {
<ReceiptSubMenu />
: subMenuName === 'customers' ?
<CustomerSubMenu />
: null
: subMenuName === 'tickets' ?
<TicketSubMenu />
: null
}
</div>
}