mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-08-23 17:47:24 +00:00
16 lines
314 B
HTML
16 lines
314 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>LBRY</title>
|
|
</head>
|
|
|
|
<body>
|
|
<div id="app"></div>
|
|
<script>
|
|
const script = document.createElement('script');
|
|
script.setAttribute('src', 'ui.js');
|
|
document.body.appendChild(script);
|
|
</script>
|
|
</body>
|
|
</html>
|