10 lines
217 B
Text
10 lines
217 B
Text
export const meta = { title: 'random number' };
|
|
client import "./things-random.client.ts";
|
|
|
|
<const/number = Math.floor(Math.random() * 999999) + 1 />
|
|
|
|
<main>
|
|
<div>${number}</div>
|
|
<button>another</button>
|
|
</main>
|
|
|