import path 깊이 수정
구조 개편 후 depth가 한 단계 깊어진 components/common, components/pc, features/admin/pc/components 내부 파일들의 상대 import 경로 업데이트 Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
1ad25630bf
commit
4da16abc10
5 changed files with 10 additions and 10 deletions
|
|
@ -1,8 +1,8 @@
|
||||||
import { useMemo } from 'react'
|
import { useMemo } from 'react'
|
||||||
import { useQuery } from '@tanstack/react-query'
|
import { useQuery } from '@tanstack/react-query'
|
||||||
import { motion, AnimatePresence } from 'framer-motion'
|
import { motion, AnimatePresence } from 'framer-motion'
|
||||||
import { api } from '../api/client'
|
import { api } from '../../api/client'
|
||||||
import { useAuthStore } from '../stores/auth'
|
import { useAuthStore } from '../../stores/auth'
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 캐릭터 입력 input 아래 뜨는 드롭다운
|
* 캐릭터 입력 input 아래 뜨는 드롭다운
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
import { useEffect, useState } from 'react'
|
import { useEffect, useState } from 'react'
|
||||||
import { motion, AnimatePresence } from 'framer-motion'
|
import { motion, AnimatePresence } from 'framer-motion'
|
||||||
import { useAuthStore } from '../stores/auth'
|
import { useAuthStore } from '../../stores/auth'
|
||||||
import { api } from '../api/client'
|
import { api } from '../../api/client'
|
||||||
|
|
||||||
export default function LoginDialog({ open, onClose }) {
|
export default function LoginDialog({ open, onClose }) {
|
||||||
const apiKey = useAuthStore((s) => s.apiKey)
|
const apiKey = useAuthStore((s) => s.apiKey)
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
import { createContext, useContext, useState, useEffect } from 'react'
|
import { createContext, useContext, useState, useEffect } from 'react'
|
||||||
import { Outlet, Link, useLocation, useMatch } from 'react-router-dom'
|
import { Outlet, Link, useLocation, useMatch } from 'react-router-dom'
|
||||||
import { useQuery } from '@tanstack/react-query'
|
import { useQuery } from '@tanstack/react-query'
|
||||||
import { api } from '../api/client'
|
import { api } from '../../api/client'
|
||||||
import Footer from './Footer'
|
import Footer from './Footer'
|
||||||
import LoginDialog from './LoginDialog'
|
import LoginDialog from '../common/LoginDialog'
|
||||||
import { useThemeStore } from '../stores/theme'
|
import { useThemeStore } from '../../stores/theme'
|
||||||
import { useAuthStore } from '../stores/auth'
|
import { useAuthStore } from '../../stores/auth'
|
||||||
|
|
||||||
const SITE_NAME = '메이플스토리 유틸리티'
|
const SITE_NAME = '메이플스토리 유틸리티'
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
import { useState } from 'react'
|
import { useState } from 'react'
|
||||||
import { useQueries } from '@tanstack/react-query'
|
import { useQueries } from '@tanstack/react-query'
|
||||||
import { motion, AnimatePresence } from 'framer-motion'
|
import { motion, AnimatePresence } from 'framer-motion'
|
||||||
import { api } from '../api/client'
|
import { api } from '../../api/client'
|
||||||
|
|
||||||
const SECTIONS = {
|
const SECTIONS = {
|
||||||
notice: { label: '메이플스토리 공지사항', dataKey: 'notice', pageSize: 5, kind: 'text' },
|
notice: { label: '메이플스토리 공지사항', dataKey: 'notice', pageSize: 5, kind: 'text' },
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
import { useState, useEffect } from 'react'
|
import { useState, useEffect } from 'react'
|
||||||
import { useQuery } from '@tanstack/react-query'
|
import { useQuery } from '@tanstack/react-query'
|
||||||
import { api } from '../../../api/client'
|
import { api } from '../../../../api/client'
|
||||||
|
|
||||||
const PAGE_SIZE = 24
|
const PAGE_SIZE = 24
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue