Last active
January 30, 2019 18:39
-
-
Save gallirohik/8a435b40a7687c59b413296cc81cba26 to your computer and use it in GitHub Desktop.
Dash board Project
This file contains 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, { Component } from "react"; | |
import "./App.css"; | |
import Header from "./components/header"; | |
import MainContent from "./components/mainContent"; | |
import Footer from "./components/footer"; | |
class App extends Component { | |
render() { | |
return ( | |
<React.Fragment> | |
<Header /> | |
<MainContent /> | |
<Footer /> | |
</React.Fragment> | |
); | |
} | |
} | |
export default App; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment