Skip to content

Commit

Permalink
style: import alias
Browse files Browse the repository at this point in the history
  • Loading branch information
esthel7 authored and 5nxtnxtnxt committed Dec 8, 2023
1 parent 716f8bb commit ab133dd
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion front/src/components/Prev/Prev.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { useContext } from 'react';
import { useNavigate } from 'react-router-dom';
import styled from 'styled-components';
import { PrevContext } from '../SnowGlobeCanvas/PrevProvider';
import { PrevContext } from '@components/SnowGlobeCanvas/PrevProvider';
import { MessageContext } from '@pages/Visit/MessageProvider';

interface PrevProps {
Expand Down
4 changes: 2 additions & 2 deletions front/src/pages/Intro/MsgBox.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { useContext } from 'react';
import { Msg } from '@components';
import { MessageContext } from '../Visit/MessageProvider';
import { SnowBallContext } from '../Visit/SnowBallProvider';
import { MessageContext } from '@pages/Visit/MessageProvider';
import { SnowBallContext } from '@pages/Visit/SnowBallProvider';

const MsgBox = () => {
const { message, sender, color } = useContext(MessageContext); // message가 '' 비어있지 않을때
Expand Down
2 changes: 1 addition & 1 deletion front/src/pages/Make/Snowball/MainDeco/MainDeco.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Prev, UIContainer } from '@components';
import Steps from './Steps';
import { DecoProvider } from './DecoProvider';
import MakeSnowballCanvas from './MakeSnowballCanvas';
import { DecoProvider } from './DecoProvider';

interface MainDecoProps {
set: React.Dispatch<React.SetStateAction<boolean>>;
Expand Down
2 changes: 1 addition & 1 deletion front/src/pages/Make/Snowball/MainDeco/Steps.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import { InputSnowball, HeaderText, StepButton } from '@components';
import MakeButton from './MakeButton';
import DecoBox from './DecoBox';
import DecoEnroll from './DecoEnroll';
import { DecoContext } from './DecoProvider';
import { UserData } from '@pages/Visit/SnowBallProvider';
import { DecoContext } from './DecoProvider';

const StateBar = styled.div`
display: flex;
Expand Down

0 comments on commit ab133dd

Please sign in to comment.