17 lines
330 B
HTML
17 lines
330 B
HTML
|
|
<!doctype html>
|
||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<title>Playwright end-to-end test</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="react-root"></div>
|
||
|
|
</body>
|
||
|
|
</html>
|