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