-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.jsx
49 lines (45 loc) · 1.21 KB
/
index.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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// @flow
import * as React from "react";
import DevpostCard from "./DevpostCard";
import "./index.css";
const Content: React.StatelessFunctionalComponent<{}> = (): React.Element<
"div"
> => (
<div className="centered-box relative history">
<div className="header-section">
<div className="icon icon-clock" />
<h3 className="title">A Walk Through Memory Lane</h3>
</div>
<DevpostCard
logo="https://hacktj.org/2019/img/logo2.png"
iteration="6.0"
year="2019"
url="https://hacktj2019.devpost.com/"
/>
<DevpostCard
logo="https://hacktj.org/2018/img/favicon.png"
iteration="5.0"
year="2018"
url="https://hacktj2018.devpost.com/"
/>
<DevpostCard
logo="https://hacktj.org/2017/img/favicon.png"
iteration="4.0"
year="2017"
url="https://hacktj2017.devpost.com/"
/>
<DevpostCard
logo="https://hacktj.org/2016/img/favicon.png"
iteration="3.0"
year="2016"
url="https://hacktj2016.devpost.com/"
/>
<DevpostCard
logo="https://hacktj.org/2015/img/favicon.png"
iteration="2.0"
year="2015"
url="https://hacktj2015.devpost.com/"
/>
</div>
);
export default Content;