mirror of
https://github.com/agdamsbo/prioritized.grouping.git
synced 2026-06-19 05:47:30 +02:00
first commit
This commit is contained in:
commit
6333bcee61
208 changed files with 413695 additions and 0 deletions
28
docs/index.html
Normal file
28
docs/index.html
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>Shiny App</title>
|
||||
<script
|
||||
src="./shinylive/load-shinylive-sw.js"
|
||||
type="module"
|
||||
></script>
|
||||
<script type="module">
|
||||
import { runApp } from "./shinylive/shinylive.js";
|
||||
const response = await fetch("./app.json");
|
||||
if (!response.ok) {
|
||||
throw new Error("HTTP error loading app.json: " + response.status);
|
||||
}
|
||||
const appFiles = await response.json();
|
||||
|
||||
const appRoot = document.getElementById("root");
|
||||
runApp(appRoot, "viewer", {startFiles: appFiles}, "r");
|
||||
</script>
|
||||
<link rel="stylesheet" href="./shinylive/style-resets.css" />
|
||||
<link rel="stylesheet" href="./shinylive/shinylive.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div style="height: 100vh; width: 100vw" id="root"></div>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue