Skip to content

Instantly share code, notes, and snippets.

@markopavlovic
Created October 10, 2020 10:04
Show Gist options
  • Select an option

  • Save markopavlovic/f3b4daeb59d1b296de31a5cb9bd1922c to your computer and use it in GitHub Desktop.

Select an option

Save markopavlovic/f3b4daeb59d1b296de31a5cb9bd1922c to your computer and use it in GitHub Desktop.
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