Skip to content

Commit

Permalink
refactor: style 파일 위치 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
SujinKim1127 committed Aug 5, 2023
1 parent 29ac54f commit 71ad212
Show file tree
Hide file tree
Showing 7 changed files with 3 additions and 3 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import ReportList from '@/components/ReportList';
import Header from '@/components/Header';
import Container from '@/components/Container';
import { ROUTES } from '@/constants';
import * as styles from '@/pages/main.style';
import * as styles from '@/components/styles/main.style';

export default function Home() {
const { data: reports } = useQuery({
Expand Down
2 changes: 1 addition & 1 deletion pages/my/reward/change/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import Container from '@/components/Container';
import Header from '@/components/Header';
import Button from '@/components/Button';
import Modal from '@/components/Modal';
import * as styles from '@/pages/my/reward/change/change.style';
import * as styles from '@/components/styles/change.style';

function MyRewardChange() {
const [isOpen, setIsOpen] = useState<boolean>(false);
Expand Down
2 changes: 1 addition & 1 deletion pages/welcome/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import Image from 'next/image';
import Container from '@/components/Container';
import Button from '@/components/Button';
import { ROUTES } from '@/constants';
import * as styles from '@/pages/welcome/welcome.style';
import * as styles from '@/components/styles/welcome.style';

export default function Welcome() {
const router = useRouter();
Expand Down

0 comments on commit 71ad212

Please sign in to comment.