Skip to content

Commit

Permalink
chore : update
Browse files Browse the repository at this point in the history
  • Loading branch information
bicco2 committed Jul 19, 2022
1 parent 818fc0c commit 79ca095
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 38 deletions.
1 change: 0 additions & 1 deletion frontend/src/Page/Login.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ import {
Modal,
Backdrop,
} from "@mui/material";
import { fontFamily } from "@mui/system";

const style = {
position: "absolute",
Expand Down
68 changes: 31 additions & 37 deletions frontend/src/component/Mypage/MyTrashChart.jsx
Original file line number Diff line number Diff line change
@@ -1,44 +1,38 @@
import * as React from "react";
import {
Typography,
Container,

} from "@mui/material";

import { Typography, Container } from "@mui/material";

function MyTrashcan() {
return(
<Container
style={{
border: "solid",
borderRadius: 5,
borderColor:"transparent",
minWidth: "100%",
height: "100vh",
}}>
<Typography
color="black"
fontWeight="bold"
sx={{mt: 1.2,
mb: 1,
fontSize: "medium"}}>
내 쓰레기 통계
</Typography>

<Container
style={{
backgroundColor: "white",
border: "solid",
borderRadius: 5,
borderColor: "black",
height: "100vh",
pt:2, pb:2}}>

</Container>

</Container>
return (
<Container
style={{
border: "solid",
borderRadius: 5,
borderColor: "transparent",
minWidth: "100%",
height: "100vh",
}}
>
<Typography
color="black"
fontWeight="bold"
sx={{ mt: 1.2, mb: 1, fontSize: "medium" }}
>
내 쓰레기 통계
</Typography>

);
<Container
style={{
backgroundColor: "white",
border: "solid",
borderRadius: 5,
borderColor: "black",
height: "100vh",
pt: 2,
pb: 2,
}}
></Container>
</Container>
);
}

export default MyTrashcan;

0 comments on commit 79ca095

Please sign in to comment.