feat: create component product

This commit is contained in:
caturbgs
2021-12-10 10:50:39 +07:00
parent ac948f3dd5
commit 48905225bb
4 changed files with 2 additions and 3 deletions

View File

@@ -3,7 +3,6 @@ import {Authentication} from "./authentication";
import {User} from "./user";
import {Membership} from "./membership";
import {Product} from "./product";
import {Categories} from "./categories";
import {TokenUtil} from "../utils/token";
export class Store {
@@ -12,7 +11,6 @@ export class Store {
user = new User(this);
membership = new Membership(this);
product = new Product(this);
categories = new Categories(this);
constructor() {
TokenUtil.loadToken();