fd57a35820
Release package / release (push) Successful in 1h12m42s
Co-authored-by: Thanh Quy - wolf <524H0124@student.tdtu.edu.vn> Reviewed-on: #28 Reviewed-by: TakahashiNguyen <takahashi.ng@icloud.com> Co-authored-by: TaNguyenThanhQuy <tanguyenthanhquy@noreply.localhost> Co-committed-by: TaNguyenThanhQuy <tanguyenthanhquy@noreply.localhost>
39 lines
853 B
TypeScript
39 lines
853 B
TypeScript
// Navigation
|
|
export { CategorySidebar } from "./navigation";
|
|
export type { CategorySidebarProps } from "./navigation";
|
|
|
|
// Cart
|
|
export { CartFab } from "./cart";
|
|
export type { CartFabProps } from "./cart";
|
|
|
|
// Product Grid
|
|
export { ProductGrid } from "./product-grid";
|
|
export type { ProductGridProps } from "./product-grid";
|
|
|
|
// Modals
|
|
export { ReviewModal } from "./modals";
|
|
export type { ReviewModalProps, ConfirmModalProps } from "./modals";
|
|
|
|
// Shop Grid
|
|
export { ShopGrid } from "./shop-grid";
|
|
export type { ShopGridProps } from "./shop-grid";
|
|
|
|
// Manager
|
|
export {
|
|
StatusBadge,
|
|
DeleteConfirm,
|
|
ProductModal,
|
|
CategoryModal,
|
|
ComboModal,
|
|
ProductsTab,
|
|
CategoriesTab,
|
|
CombosTab,
|
|
} from "./manager";
|
|
export type {
|
|
ProductModalProps,
|
|
CategoryModalProps,
|
|
ComboModalProps,
|
|
DeleteConfirmProps,
|
|
StatusBadgeProps,
|
|
} from "./manager";
|