HomeMain.js
820 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import React from "react";
import styled from "styled-components";
import HomeDate from "./HomeDate";
import HomeCalender from "./HomeCalendar";
import HomeCheckList from "./HomeCheckList";
const HomeContainer = styled.div`
display: flex;
flex-direction: row;
width: 85%;
`;
const HomeMiddleBox = styled.div`
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 70%;
`;
const HomeRightBox = styled.div`
display: flex;
flex-direction: column;
justify-content: center;
align-items: space-between;
width: 30%;
`;
export default () => {
return (
<HomeContainer>
<HomeMiddleBox>
<HomeDate />
</HomeMiddleBox>
<HomeRightBox>
<HomeCalender />
<HomeCheckList />
</HomeRightBox>
</HomeContainer>
);
};