forked from benjaminhsieh2002/benjaminhsieh2002.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
50 lines (29 loc) · 1.17 KB
/
App.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import React, { Component } from 'react';
import logo from './logo.svg';
import clubLogo from './codersSBlogo.png';
import './App.css';
class App extends Component {
render() {
return (
<div className="App">
<header className="App-header">
<img src={clubLogo} style={{height:100}} className="App-logo" alt="logo" />
<p>
There is a light at the edge of sight, where the sea kisses the sky...
</p>
<a
className="App-link"
href="https://reactjs.org"
target="_blank"
rel="noopener noreferrer"
>
<p style={{textAlign:"left", fontFamily:"monospace"}} >EtymologyTeam = [Benjamin Hsieh, Sean Carter, Connor Duncan, Sophia Weiler]</p>
<p style={{textAlign:"left", fontFamily:"monospace"}} >return(EtymologyTeam == teams.best);</p>
<p style={{textAlign:"left", fontFamily:"monospace"}} >>>> True</p>
</a>
</header>
</div>
);
}
}
export default App;