Page Category

This commit is contained in:
2021-12-15 15:29:01 +07:00
7 changed files with 571 additions and 104 deletions

View File

@@ -9,6 +9,7 @@ import {Commission} from "../pages/Config/Commission";
import {Partner} from "../pages/Config/Partner";
import {Supplier} from "../pages/Config/Supplier";
import {Category} from "../pages/Product/Category";
import {Payback} from "../pages/Payback/Payback";
export const LINKS = {
@@ -22,7 +23,8 @@ export const LINKS = {
COMMISSION: "/app/commission",
SUPPLIER: "/app/supplier",
CATEGORY: "/app/category",
PAYBACK: "/app/payback",
};
export const AppRoute = () => {
@@ -51,6 +53,9 @@ export const AppRoute = () => {
<Route path={LINKS.TRANSACTION}>
<Transaction/>
</Route>
<Route path={LINKS.PAYBACK}>
<Payback/>
</Route>
<Route path={LINKS.ABOUT}>
<About/>
</Route>