[WIP] Add Claim Request

This commit is contained in:
R
2023-02-14 12:39:51 +07:00
parent a7e688a52c
commit 13542cd3c0
102 changed files with 2625 additions and 391 deletions

View File

@@ -3,11 +3,11 @@ import { NavLink as RouterLink } from 'react-router-dom';
// @mui
import { Box, Link } from '@mui/material';
// config
import { ICON } from '../../../config';
import { ICON } from '@/config';
// type
import { NavItemProps } from '../type';
import { NavItemProps } from '@/type';
//
import Iconify from '../../Iconify';
import Iconify from '@/components/Iconify';
import { ListItemStyle } from './style';
import { isExternalLink } from '..';

View File

@@ -1,7 +1,7 @@
import { useState, useEffect, useRef } from 'react';
import { useLocation } from 'react-router-dom';
// type
import { NavListProps } from '../type';
import { NavListProps } from '@/type';
//
import { NavItemRoot, NavItemSub } from './NavItem';
import { PaperStyle } from './style';

View File

@@ -2,7 +2,7 @@ import { memo } from 'react';
// @mui
import { Stack } from '@mui/material';
// type
import { NavSectionProps } from '../type';
import { NavSectionProps } from '@/type';
//
import { NavListRoot } from './NavList';

View File

@@ -3,7 +3,7 @@ import { ReactNode } from 'react';
import { alpha, styled } from '@mui/material/styles';
import { Button, Popover, ButtonProps, LinkProps } from '@mui/material';
// config
import { NAVBAR } from '../../../config';
import { NAVBAR } from '@/config';
// ----------------------------------------------------------------------