mirror of
https://github.com/MontFerret/ferret.git
synced 2024-12-16 11:37:36 +02:00
14c487ca46
* Updated pagination iterator * Added e2e test * Fixed e2e tests
23 lines
1.3 KiB
HTML
23 lines
1.3 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
|
<title>Ferret E2E SPA</title>
|
|
<meta name="description" content="">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
|
|
<link rel="stylesheet" href="index.css">
|
|
</head>
|
|
<body class="text-center">
|
|
<div id="root"></div>
|
|
<script src="https://unpkg.com/react@16.8.6/umd/react.production.min.js"></script>
|
|
<script src="https://unpkg.com/react-dom@16.8.6/umd/react-dom.production.min.js"></script>
|
|
<script src="https://unpkg.com/history@4.9.0/umd/history.min.js"></script>
|
|
<script src="https://unpkg.com/react-router@4.3.1/umd/react-router.js"></script>
|
|
<script src="https://unpkg.com/react-router-dom@4.3.1/umd/react-router-dom.js"></script>
|
|
<script src="https://unpkg.com/react-bootstrap@next/dist/react-bootstrap.min.js" crossorigin> </script>
|
|
<script src="index.js" type="module"></script>
|
|
</body>
|
|
</html>
|