File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ import './Style.css';
44
55import ApolloClient from 'apollo-boost' ;
66import { ApolloProvider } from "react-apollo" ;
7+ import Launches from "./components/Launches" ;
78
89const client = new ApolloClient ( {
910 uri : 'http://localhost:5000/graphql'
@@ -17,6 +18,7 @@ class App extends React.Component {
1718 < div className = "logo-container" >
1819 < img src = { Logo } alt = "Logo" className = "logo" />
1920 </ div >
21+ < Launches />
2022 </ div >
2123 </ ApolloProvider >
2224 )
Original file line number Diff line number Diff line change @@ -16,7 +16,9 @@ const LAUNCHES_QUERY = gql`
1616class Launches extends React . Component {
1717 render ( ) {
1818 return (
19- < div > </ div >
19+ < div className = "display-4 my-3" > Launches </ div >
2020 ) ;
2121 }
2222}
23+
24+ export default Launches ;
You can’t perform that action at this time.
0 commit comments