HomeMain.js
947 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
40
41
42
43
44
import React from "react";
import styled from "styled-components";
import HomeTodo from "./HomeTodo";
import HomeCalender from "./HomeCalendar";
import HomeCheckList from "./HomeCheckList";
import img from "../../imgs/1.jpg";
const HomeContainer = styled.div`
display: flex;
flex-direction: row;
width: 85%;
background-image: url(${img});
background-position: center;
background-size: cover;
`;
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>
<HomeTodo />
</HomeMiddleBox>
<HomeRightBox>
<HomeCalender />
<HomeCheckList />
</HomeRightBox>
</HomeContainer>
);
};