Skip to content

Commit

Permalink
rename: 폴더 정리 및 이동 (related to: #1)
Browse files Browse the repository at this point in the history
  • Loading branch information
hyeonjin25 committed Aug 1, 2023
1 parent d31e5c2 commit 77d7365
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React from 'react';
import Editor from './components/ReviewEditor/ReviewEditor';
import Editor from './pages/ReviewEditor';

function App() {
return (
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
import React from 'react';
import styled from 'styled-components';
import Close from '../assets/icons/close.svg';
import Close from '@/assets/icons/close.svg';
import { colors } from '@/utils/GlobalStyles';
import { ReactComponent as Camera } from '@/assets/icons/camera.svg';
import { Row } from '@/ui/flex/flex';
import Fonts from '@/utils/GlobalFonts';

interface Props {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import React, { useState } from 'react';
import styled from 'styled-components';
import Rating from './ReviewRating';
import FileInput from '../FileInput';
import Fonts from '../../utils/GlobalFonts';
import { colors } from '../../utils/GlobalStyles';
import Rating from '../components/ReviewEditor/ReviewRating';
import Fonts from '../utils/GlobalFonts';
import { colors } from '../utils/GlobalStyles';
import FileInput from '../components/ReviewEditor/FileInput';

export default function ReviewEditor() {
const [text, setText] = useState<string>('');
Expand Down

0 comments on commit 77d7365

Please sign in to comment.