Skip to content

Instantly share code, notes, and snippets.

@ilonacodes
Created December 9, 2018 17:11
Show Gist options
  • Save ilonacodes/d21903964f228ecd2847290a34cec566 to your computer and use it in GitHub Desktop.
Save ilonacodes/d21903964f228ecd2847290a34cec566 to your computer and use it in GitHub Desktop.
import React, { Component } from 'react';
import './App.css';
import {Dashboard} from './Dashboard';
class App extends Component {
render() {
return (
<div className="App">
<header className="App-header">
<Dashboard />
</header>
</div>
);
}
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment