This commit is contained in:
mehbark 2023-08-21 23:19:43 -04:00
parent 48279a7da4
commit a66f416029

View file

@ -1,4 +1,4 @@
import { randirect } from "./common.tsx"; import { Main, randirect } from "./common.tsx";
import { render } from "preact-render-to-string"; import { render } from "preact-render-to-string";
// 0 will be hidden (but it will be obvious that that is a thing, i don't think // 0 will be hidden (but it will be obvious that that is a thing, i don't think
@ -107,7 +107,7 @@ if (answer.length != 30) throw `dude ${answer.length}`;
console.log( console.log(
render( render(
<> <Main>
<a <a
href={randirect( href={randirect(
...riddles ...riddles
@ -127,6 +127,6 @@ console.log(
> >
see if you have the right answer see if you have the right answer
</a> </a>
</> </Main>
) )
); );