08ab4910c1
* feat(sandbox): varied url loading support * fix(optional): removes input box * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Fixed some lint warnings * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: AlexandruPopovici <alexandrupopoviciioan@gmail.com>
35 lines
1.0 KiB
HTML
35 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="favicon.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Vite App</title>
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
</head>
|
|
<body>
|
|
<div id="renderer" />
|
|
<!-- <div id="app">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="twelve columns h-96">
|
|
<input
|
|
id="objectUrlInput"
|
|
class="input"
|
|
type="text"
|
|
name="objectId"
|
|
placeholder="Object Url"
|
|
style="width: 49%"
|
|
value="https://latest.speckle.dev/streams/010b3af4c3/objects/a401baf38fe5809d0eb9d3c902a36e8f"
|
|
/>
|
|
<button id="loadButton" class="button" onclick="loadData()" style="width: 29%">
|
|
Load Object URL
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> -->
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
</html>
|