Skip to content

Commit

Permalink
refactor: 폴더 구조 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
eunxoo committed Mar 18, 2024
1 parent 830d6ec commit d197e29
Show file tree
Hide file tree
Showing 19 changed files with 26 additions and 39 deletions.
13 changes: 0 additions & 13 deletions src/MediaQuery/useMediaQuery.js

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { useState, useEffect } from "react";
import styled from "styled-components";
import * as S from "../style/LayoutStyle";
import * as S from "../../style/LayoutStyle";
import Posts from "./Posts";
import TimePosts from "./TimePosts";
import Pagination from "./Pagination";
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { useState, useEffect } from "react";
import styled from "styled-components";
import TimePopup from "./TimePopup";
import TimePopup from "../interview/TimePopup";

const StyledInput = styled.input`
position: relative;
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { useEffect, useState } from "react";
import apiModule from "../api/apiModule";
import apiModule from "../../api/apiModule";
import styled from "styled-components";

const Question = ({ documentData }) => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { useState, useEffect } from "react";
import styled from "styled-components";
import apiModule from "../api/apiModule";
import apiModule from "../../api/apiModule";

const PopupOverlay = styled.div`
position: fixed;
Expand Down
4 changes: 2 additions & 2 deletions src/pages/home/HomePage.jsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import React from "react";
import styled from "styled-components";
import * as S from "../../style/LayoutStyle";
import Navbar from "../../components/Navbar";
import Logo from "../../components/Logo";
import Navbar from "../../components/common/Navbar";
import Logo from "../../components/common/Logo";

const VLine = styled.div`
border-left: 1px solid white;
Expand Down
6 changes: 3 additions & 3 deletions src/pages/recruit/ApplicationStatusPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ import React, { useState, useEffect } from "react";
import apiModule from "../../api/apiModule";
import styled from "styled-components";
import * as S from "../../style/LayoutStyle";
import Navbar from "../../components/Navbar";
import Logo from "../../components/Logo";
import Board from "../../components/Board";
import Navbar from "../../components/common/Navbar";
import Logo from "../../components/common/Logo";
import Board from "../../components/board/Board";

const StateContainer = styled.div`
display: flex;
Expand Down
4 changes: 2 additions & 2 deletions src/pages/recruit/DocumentDetailPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import React, { useState, useEffect } from "react";
import { useParams } from "react-router-dom";
import styled from "styled-components";
import apiModule from "../../api/apiModule";
import Form from "../../components/Form";
import Question from "../../components/Question";
import Form from "../../components/document/Form";
import Question from "../../components/document/Question";

const DocumentDetailPage = () => {
const { joinerId } = useParams();
Expand Down
4 changes: 2 additions & 2 deletions src/pages/recruit/DocumentItemsEditPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import React, { useState, useEffect } from "react";
import { useNavigate } from "react-router-dom";
import styled from "styled-components";
import * as S from "../../style/LayoutStyle";
import Navbar from "../../components/Navbar";
import Logo from "../../components/Logo";
import Navbar from "../../components/common/Navbar";
import Logo from "../../components/common/Logo";
import apiModule from "../../api/apiModule";

const QuestionContainer = styled.div``;
Expand Down
4 changes: 2 additions & 2 deletions src/pages/recruit/DocumentItemsPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import apiModule from "../../api/apiModule";
import { useNavigate } from "react-router-dom";
import styled from "styled-components";
import * as S from "../../style/LayoutStyle";
import Navbar from "../../components/Navbar";
import Logo from "../../components/Logo";
import Navbar from "../../components/common/Navbar";
import Logo from "../../components/common/Logo";

const QuestionContainer = styled.div`
display: flex;
Expand Down
4 changes: 2 additions & 2 deletions src/pages/recruit/InitApplicantPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import React from "react";
import apiModule from "../../api/apiModule";
import styled from "styled-components";
import * as S from "../../style/LayoutStyle";
import Navbar from "../../components/Navbar";
import Logo from "../../components/Logo";
import Navbar from "../../components/common/Navbar";
import Logo from "../../components/common/Logo";

const VLine = styled.div`
border-left: 1px solid white;
Expand Down
6 changes: 3 additions & 3 deletions src/pages/recruit/InterviewTimePage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ import React, { useState, useEffect } from "react";
import apiModule from "../../api/apiModule";
import styled from "styled-components";
import * as S from "../../style/LayoutStyle";
import Navbar from "../../components/Navbar";
import Logo from "../../components/Logo";
import Board from "../../components/Board";
import Navbar from "../../components/common/Navbar";
import Logo from "../../components/common/Logo";
import Board from "../../components/board/Board";

const VLine = styled.div`
border-left: 1px solid white;
Expand Down
6 changes: 3 additions & 3 deletions src/pages/recruit/PassFinalPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ import React, { useState, useEffect } from "react";
import apiModule from "../../api/apiModule";
import styled from "styled-components";
import * as S from "../../style/LayoutStyle";
import Navbar from "../../components/Navbar";
import Logo from "../../components/Logo";
import Board from "../../components/Board";
import Navbar from "../../components/common/Navbar";
import Logo from "../../components/common/Logo";
import Board from "../../components/board/Board";

const VLine = styled.div`
border-left: 1px solid white;
Expand Down
6 changes: 3 additions & 3 deletions src/pages/recruit/PassedApplicantsPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ import React, { useState, useEffect } from "react";
import apiModule from "../../api/apiModule";
import styled from "styled-components";
import * as S from "../../style/LayoutStyle";
import Navbar from "../../components/Navbar";
import Logo from "../../components/Logo";
import Board from "../../components/Board";
import Navbar from "../../components/common/Navbar";
import Logo from "../../components/common/Logo";
import Board from "../../components/board/Board";

const VLine = styled.div`
border-left: 1px solid white;
Expand Down

0 comments on commit d197e29

Please sign in to comment.