20 lines
414 B
HTML
20 lines
414 B
HTML
|
|
<!doctype html>
|
||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<title>Visual regression tests</title>
|
||
|
|
<meta charset="utf-8" />
|
||
|
|
<meta name="viewport" content="initial-scale=1, width=device-width" />
|
||
|
|
<style>
|
||
|
|
body {
|
||
|
|
background-color: white;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
</head>
|
||
|
|
|
||
|
|
<body>
|
||
|
|
<div id="test-viewer"></div>
|
||
|
|
<div id="react-root"></div>
|
||
|
|
<script type="module" src="/index.jsx"></script>
|
||
|
|
</body>
|
||
|
|
</html>
|