Public
HTTP (deprecated)
Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/** @jsxImportSource https://esm.sh/solid-jsx */
import StlViewer from "npm:react-stl-viewer";
import { renderToString } from "npm:solid-js/web";
function StlViewer() {
return (
<StlViewer
url="http://www.example.com/example-url.stl"
width={400}
height={400}
modelColor="#B92C2C"
backgroundColor="#EAEAEA"
rotate={true}
orbitControls={true}
/>
);
}
export const solidExample = async () =>
new Response(
await renderToString(() => (
<html>
<div>Test {1 + 1}</div>
</html>
)),
{
headers: {
"Content-Type": "text/html",
},
},
);
rayman-solidexample.web.val.run
December 16, 2023