Skip to content

Commit 42cfd9b

Browse files
authored
Merge branch 'source' into add-pandas
2 parents a3e8f9e + a4a086f commit 42cfd9b

File tree

2 files changed

+515
-225
lines changed

2 files changed

+515
-225
lines changed

src/App.jsx

Lines changed: 13 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,22 @@
1-
import React, { Component } from 'react';
1+
import React from 'react';
22
import './App.css';
33
import LinkButton from './components/LinkButton/LinkButton';
44
import Navbar from './components/Navbar/Navbar';
55
import CardsContainer from './components/ProjectList/CardsContainer';
66
import SocialShare from './components/SocialShare/SocialShare';
77

8-
class App extends Component {
9-
render() {
10-
return (
11-
<div className="App">
12-
<Navbar />
13-
<div className="App-header">
14-
<h1>Make your first open source contribution in 5 minutes</h1>
15-
</div>
16-
<LinkButton />
17-
<CardsContainer />
18-
<SocialShare/>
19-
</div>
20-
);
21-
}
8+
const App = () => {
9+
return (
10+
<div className="App">
11+
<Navbar />
12+
<div className="App-header">
13+
<h1>Make your first open source contribution in 5 minutes</h1>
14+
</div>
15+
<LinkButton />
16+
<CardsContainer />
17+
<SocialShare/>
18+
</div>
19+
);
2220
}
2321

2422
export default App;

0 commit comments

Comments
 (0)