Skip to content

Instantly share code, notes, and snippets.

@treyhuffine
Created April 20, 2019 22:11
Show Gist options
  • Select an option

  • Save treyhuffine/be294251b36b44d275da7cd45c455af9 to your computer and use it in GitHub Desktop.

Select an option

Save treyhuffine/be294251b36b44d275da7cd45c455af9 to your computer and use it in GitHub Desktop.
import React from 'react';
import LaunchList from './components/LaunchList';
import LaunchProfile from './components/LaunchProfile';
import './App.css';
const App = () => {
return (
<div className="App">
<LaunchList />
<LaunchProfile />
</div>
);
};
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment