-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfake-doc.ts
62 lines (59 loc) · 1.78 KB
/
fake-doc.ts
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
50
51
52
53
54
55
56
57
58
59
60
61
62
const html = /* html */ `
<!DOCTYPE html>
<body>
<table>
<thead>
<tr>
<th scope="col">Red list</th>
<th scope="col">Upcoming changes to the red list</th>
<td></td>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Angola</th>
<td> </td>
<td> </td>
</tr>
</tbody>
</table>
<table>
<thead>
<tr>
<th scope="col">Amber list</th>
<th scope="col">Upcoming changes to the amber list</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Afghanistan</th>
<td> </td>
</tr>
<tr>
<th scope="row">Portugal (including the Azores and Madeira)</th>
<td>Currently on the green list. Will move to amber list 4am, Tuesday 8 June. If you arrive in England after then you need to <a href="#amber-list" class="govuk-link">follow the amber list rules</a>.</td>
</tr>
</tbody>
</table>
<table>
<thead>
<tr>
<th scope="col">Green list</th>
<th scope="col">Green watchlist and upcoming changes to the green list</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">Australia</th>
<td> </td>
</tr>
<tr>
<th scope="row">Portugal (including the Azores and Madeira)</th>
<td>Currently on the green list. Will move to amber list 4am, Tuesday 8 June. If you arrive in England after then you need to <a href="#amber-list" class="govuk-link">follow the amber list rules</a>.</td>
</tr>
</tbody>
</table>
</body>
</html>
`;
export default html;