Skip to content

Commit

Permalink
Feat: 기본 폴더 구조 생성
Browse files Browse the repository at this point in the history
  • Loading branch information
shinker1002 committed Nov 13, 2022
1 parent ab70c7e commit 248005b
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 6 deletions.
2 changes: 1 addition & 1 deletion client/src/App.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import './App.scss';
import { Route, Routes } from 'react-router-dom';
import Layout from './components/layout/js/Layout';
import Home from './components/home/js/Home';
import Home from './pages/home/js/Home';

function App() {
return (
Expand Down
11 changes: 11 additions & 0 deletions client/src/assets/scss/common.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
/*
선언: $variable-name: variable-value;
사용: scss파일 import 후, 속성: $variable-name;
*/


// color


// Media Query 분기점
2 changes: 1 addition & 1 deletion client/src/components/footer/js/Footer.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import '../css/footer.scss';
import '../css/Footer.scss';

export default function Footer() {
return (
Expand Down
2 changes: 1 addition & 1 deletion client/src/components/header/js/Header.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import '../css/header.scss';
import '../css/Header.scss';
import Nav from './Nav';

export default function Header() {
Expand Down
2 changes: 1 addition & 1 deletion client/src/components/header/js/Nav.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import '../css/nav.scss';
import '../css/Nav.scss';

export default function Nav() {
return (
Expand Down
2 changes: 1 addition & 1 deletion client/src/components/layout/js/Layout.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import '../css/layout.scss';
import '../css/Layout.scss';
import { Outlet } from 'react-router-dom';
import Header from '../../header/js/Header';
import Main from '../../main/js/Main';
Expand Down
2 changes: 1 addition & 1 deletion client/src/components/main/js/Main.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import '../css/main.scss';
import '../css/Main.scss';
import { Outlet } from 'react-router-dom';

export default function Main() {
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 248005b

Please sign in to comment.