* Add eslint for linting js (https://github.com/ikreymer/browsertrix-cloud/pull/7) * Add prettier for formatting frontend files (https://github.com/ikreymer/browsertrix-cloud/pull/9) * Add frontend testing framework (https://github.com/ikreymer/browsertrix-cloud/pull/10) closes #4, closes #5
14 lines
310 B
HTML
14 lines
310 B
HTML
<!DOCTYPE html>
|
|
<html data-theme="light">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>Demo</title>
|
|
<script src="/main.js"></script>
|
|
</head>
|
|
<body class="min-w-screen min-h-screen">
|
|
<browsertrix-app
|
|
class="flex flex-col min-h-screen bg-blue-400"
|
|
></browsertrix-app>
|
|
</body>
|
|
</html>
|