Skip to content

Commit

Permalink
refactor: components, pages 폴더 첫 글자 소문자로 변경#40
Browse files Browse the repository at this point in the history
  • Loading branch information
Han-Joon-Hyeok committed Nov 30, 2022
1 parent be95ea3 commit 1c21b83
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 10 deletions.
11 changes: 5 additions & 6 deletions src/App.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
import { useState } from "react";
import CssBaseline from "@mui/material/CssBaseline";
import Container from "@mui/material/Container";
import Box from "@mui/material/Box";
import { createTheme, ThemeProvider } from "@mui/material/styles";
import { Route, Routes } from "react-router-dom";
import Login from "./Pages/Login";
import Home from "./Pages/Home";
import Signup from "./Pages/Signup";
import Auth from "./Pages/Auth";
import Copyright from "./Components/Copyright";
import Login from "./pages/Login";
import Home from "./pages/Home";
import Signup from "./pages/Signup";
import Auth from "./pages/Auth";
import Copyright from "./components/Copyright";

const theme = createTheme({
palette: {
Expand Down
6 changes: 3 additions & 3 deletions src/Pages/Home.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ import React, { useState, useEffect } from "react";
import axios from "axios";
import { Avatar, Typography } from "@mui/material";
import Button from "@mui/material/Button";
import AttendanceTable from "../Components/AttendanceTable";
import AttendanceButton from "../Components/AttendanceButton";
import TodayWordButton from "../Components/TodayWordButton";
import AttendanceTable from "../components/AttendanceTable";
import AttendanceButton from "../components/AttendanceButton";
import TodayWordButton from "../components/TodayWordButton";
import useStore from "../store.js";

const getTodayDate = () => {
Expand Down
2 changes: 1 addition & 1 deletion src/Pages/Signup.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { List, ListItem, ListItemIcon, ListItemText } from "@mui/material";
import CheckIcon from "@mui/icons-material/Check";
import Alert from "@mui/material/Alert";
import useStore from "../store.js";
import PasswordField from "../Components/PasswordField.jsx";
import PasswordField from "../components/PasswordField.jsx";

const Signup = () => {
const navigate = useNavigate();
Expand Down

0 comments on commit 1c21b83

Please sign in to comment.