[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

@@ -1,10 +1,10 @@
import { ReactNode, createContext } from 'react';
// hooks
import useLocalStorage from '../hooks/useLocalStorage';
import useLocalStorage from '@/hooks/useLocalStorage';
// utils
import getColorPresets, { colorPresets, defaultPreset } from '../utils/getColorPresets';
import getColorPresets, { colorPresets, defaultPreset } from '@/utils/getColorPresets';
// config
import { defaultSettings } from '../config';
import { defaultSettings } from '@/config';
// @type
import {
ThemeMode,
@@ -12,7 +12,7 @@ import {
ThemeDirection,
ThemeColorPresets,
SettingsContextProps,
} from '../components/settings/type';
} from '@/components/settings/type';
// ----------------------------------------------------------------------