Created
October 10, 2020 10:04
-
-
Save markopavlovic/f3b4daeb59d1b296de31a5cb9bd1922c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import React from "react"; | |
| import Calendar from "./components/Calendar"; | |
| import "./App.css"; | |
| class App extends React.Component { | |
| render() { | |
| return ( | |
| <div className="App"> | |
| <header> | |
| <div id="logo"> | |
| <span className="icon">date_range</span> | |
| <span> | |
| react<b>calendar</b> | |
| </span> | |
| </div> | |
| </header> | |
| <main> | |
| <Calendar /> | |
| </main> | |
| </div> | |
| ); | |
| } | |
| } | |
| export default App; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment