Skip to content

Instantly share code, notes, and snippets.

@gallirohik
Last active January 30, 2019 18:39
Show Gist options
  • Save gallirohik/8a435b40a7687c59b413296cc81cba26 to your computer and use it in GitHub Desktop.
Save gallirohik/8a435b40a7687c59b413296cc81cba26 to your computer and use it in GitHub Desktop.
Dash board Project
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