-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathFooter.js
More file actions
50 lines (45 loc) · 1.28 KB
/
Footer.js
File metadata and controls
50 lines (45 loc) · 1.28 KB
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
45
46
47
48
49
50
import React from 'react'
import { Typography } from '@material-ui/core';
import { makeStyles } from "@material-ui/core/styles";
const useStyles = makeStyles({
container:{
display: 'flex'
},
left_div:{
display: 'flex',
mergin: '5%',
padding: '1% 3%'
},
right_div:{
display: 'flex',
justifyContent: 'flex-end',
flex: 1,
padding: '1% 4%'
},
text1:{
color: "#6CCACB",
padding: ' 0px 10px'
},
text2:{
color: "#39586E",
}
});
const Footer = () => {
const classes = useStyles();
return (
<>
<hr/>
<div className={classes.container}>
<div className={classes.left_div}>
<Typography><span className={classes.text1}>Copyright © 2019</span></Typography>
<Typography><span className={classes.text1}>Hodlinfo.com Developed By </span></Typography>
<Typography><span className={classes.text2}>QuadBTech</span></Typography>
</div>
<div className={classes.right_div}>
<Typography className={classes.text1}>support</Typography>
</div>
</div>
</>
)
}
export default Footer;