SomeNet
/
public repos
/
pub
/
jan
/
aic18.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Convert SearchTerm and SearchTermsInput into functional components
[pub/jan/aic18.git]
/
service-website
/
src
/
components
/
App.js
1
import React, {Component} from "react";
2
import SentimentAnalysis from "./SentimentAnalysis";
3
4
class App extends Component {
5
render() {
6
return (
7
<div className="App">
8
<header>
9
<span>Sentiment Analysis</span>
10
</header>
11
<main>
12
<SentimentAnalysis/>
13
</main>
14
<footer>
15
<span>G6T4</span>
16
</footer>
17
</div>
18
);
19
}
20
}
21
22
export default App;