Skip to content

Commit

Permalink
[Feat] 브랜치 병합
Browse files Browse the repository at this point in the history
- 로그인/로그아웃 관련 컴포넌트 구현으로 인한 브랜치 병합

Issues #12
  • Loading branch information
novice1993 committed Sep 1, 2023
2 parents 323b525 + bf3a81c commit 36335b9
Show file tree
Hide file tree
Showing 30 changed files with 1,570 additions and 33 deletions.
141 changes: 139 additions & 2 deletions client/package-lock.json

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

3 changes: 3 additions & 0 deletions client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@
"preview": "vite preview"
},
"dependencies": {
"axios": "^1.5.0",
"echarts": "^5.4.3",
"echarts-for-react": "^3.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": "^6.0.7"
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions client/src/asset/images/GoogleLogo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 21 additions & 0 deletions client/src/asset/images/KakaoLogo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 24 additions & 0 deletions client/src/components/CentralChartSection/Index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
import { styled } from "styled-components";

import UpperMenuBar from "../CentralSectionMenu/Index";
import StockChart from "./StockChart";

const CentralChartSection = () => {
return (
<Container>
<UpperMenuBar />
<StockChart />
</Container>
);
};

export default CentralChartSection;

const Container = styled.div`
flex: 6.7 0 0;
min-width: 630px;
height: 100%;
display: flex;
flex-direction: column;
`;
Loading

0 comments on commit 36335b9

Please sign in to comment.