forked from firstcontributions/first-contributions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.jsx
24 lines (22 loc) · 737 Bytes
/
App.jsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import React, { Component } from 'react';
import './App.css';
import LinkButton from './components/LinkButton/LinkButton';
import Navbar from './components/Navbar/Navbar';
import CardsContainer from './components/ProjectList/CardsContainer';
import SocialShare from './components/SocialShare/SocialShare';
class App extends Component {
render() {
return (
<div className="App">
<Navbar />
<div className="App-header">
<h1>Make your first open source contribution in 5 minutes</h1>
</div>
<LinkButton />
<CardsContainer />
<SocialShare/>
</div>
);
}
}
export default App;