Skip to content

Commit

Permalink
Update StoreRouter.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
kokofixcomputers authored Oct 6, 2024
1 parent 641cb96 commit 9f431b9
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions resources/scripts/routers/StoreRouter.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import React from 'react';
import * as Icon from 'react-feather';
import { useStoreState } from 'easy-peasy';
import { useLocation } from 'react-router';
import TransitionRouter from '@/TransitionRouter';
import SidePanel from '@/components/elements/SidePanel';
Expand All @@ -12,10 +13,13 @@ import OverviewContainer from '@/components/store/OverviewContainer';
import MobileNavigation from '@/components/elements/MobileNavigation';
import ResourcesContainer from '@/components/store/ResourcesContainer';
import SubNavigation from '@/components/elements/SubNavigation';
import CouponContainer from '@/components/dashboard/CouponContainer';


export default () => {
const location = useLocation();
const { width } = useWindowDimensions();
const coupons = useStoreState((state) => state.settings.data!.coupons);
const match = useRouteMatch<{ id: string }>();

return (
Expand Down

0 comments on commit 9f431b9

Please sign in to comment.