Skip to content

Commit

Permalink
[Feat] 브랜치 병합
Browse files Browse the repository at this point in the history
- 좌/우측 컴포넌트 구현으로 인한 브랜치 병합

Issues #43
  • Loading branch information
novice1993 committed Sep 4, 2023
2 parents deb6d40 + a903437 commit 35abb87
Show file tree
Hide file tree
Showing 33 changed files with 1,560 additions and 41 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
READMD 파일
39 changes: 39 additions & 0 deletions client/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.1.2",
"react-router-dom": "^6.15.0",
"styled-components": "^6.0.7"
},
"devDependencies": {
Expand Down
1 change: 1 addition & 0 deletions client/src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@
box-sizing: border-box;
margin: 0px;
list-style: none;
text-decoration: none;
}
8 changes: 6 additions & 2 deletions client/src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
import "./App.css";
import MainPage from "./page/MainPage";

import { BrowserRouter } from "react-router-dom";
function App() {
return <MainPage />;
return (
<BrowserRouter>
<MainPage />
</BrowserRouter>
);
}

export default App;
Binary file added client/src/asset/icon/dot_Icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added client/src/asset/images/menu.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
186 changes: 186 additions & 0 deletions client/src/asset/logos/LG_logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 19 additions & 0 deletions client/src/asset/logos/POSCO_logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added client/src/asset/logos/SK_logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
99 changes: 99 additions & 0 deletions client/src/asset/logos/Samsung_logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 35abb87

Please sign in to comment.