0f0daf378c
Co-authored-by: aklinker1 <aklinker1@users.noreply.github.com>
18 lines
463 B
HTML
18 lines
463 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Popup</title>
|
|
</head>
|
|
<body>
|
|
<label>
|
|
<input id="enabledCheckbox" type="checkbox" />
|
|
 Analytics enabled
|
|
</label>
|
|
<button id="button1">Button 1</button>
|
|
<button class="cool-button">Button 2</button>
|
|
<script type="module" src="./main.ts"></script>
|
|
</body>
|
|
</html>
|