sitegen/src/q+a/views/things-random.marko

11 lines
217 B
Text
Raw Normal View History

2025-06-10 01:13:59 -07:00
export const meta = { title: 'random number' };
client import "./things-random.client.ts";
<const/number = Math.floor(Math.random() * 999999) + 1 />
<main>
2025-06-10 01:13:59 -07:00
<div>${number}</div>
<button>another</button>
</main>
2025-06-10 01:13:59 -07:00