add google calendar

This commit is contained in:
JilianaTiu 2022-09-26 11:42:47 -07:00
parent 1313dd26d3
commit 52436eaa97
6 changed files with 18 additions and 0 deletions

BIN
.DS_Store vendored Normal file

Binary file not shown.

BIN
src/.DS_Store vendored Normal file

Binary file not shown.

BIN
src/public/.DS_Store vendored

Binary file not shown.

View file

@ -335,3 +335,9 @@ a:hover {
font-size: 0.45em;
}
}
#cal {
border:solid 1px #777;
width: 800px;
height: 600px;
}

View file

@ -31,6 +31,18 @@ class Main extends React.Component<MainProps, MainState> {
))
}</div>
</DefaultSection>
<div>
<html>
<iframe id="cal" src="https://calendar.google.com/calendar/embed?height=600&wkst=1&bgcolor=%23ffffff&ctz=America%2FLos_Angeles"></iframe>
</html>
</div>
<div>
<iframe src="https://calendar.google.com/calendar/embed?height=600&wkst=1&bgcolor=%23ffffff&ctz=America%2FLos_Angeles" width="800" height="600" frameBorder="0" scrolling="no"></iframe>
</div>
<Footer></Footer>
</>;
}

Binary file not shown.