-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
33 lines (26 loc) · 1.13 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/main.css" rel="stylesheet" type="text/css" />
<title>Founders | Fall 2020 Take Home</title>
</head>
<body>
<main id="wrapper">
<h1>Fall 2020 Frontend Take Home</h1>
<p>
In <code>`/components/Table.js`</code> make a GET request to <code>`https://founders-takehome-api.herokuapp.com/api/fetch`</code> (<a href="https://founders-takehome-api.herokuapp.com/api" target="_blank">documentation</a>).
<br />
Proceed to format and return an HTML table with the response data within the React component.
</p>
<div id="table"></div>
</main>
</body>
<!-- React -->
<script src="https://unpkg.com/babel-standalone@6/babel.min.js" crossorigin></script>
<script src="https://unpkg.com/react@16/umd/react.development.js" crossorigin></script>
<script src="https://unpkg.com/react-dom@16/umd/react-dom.development.js" crossorigin></script>
<!-- Components -->
<script src="components/Table.js" type="text/babel"></script>
</html>