11 lines
228 B
Text
11 lines
228 B
Text
|
---
|
||
|
import { useInlineScript } from "../framework/page-resources";
|
||
|
|
||
|
const number = Math.floor(Math.random() * 999999) + 1;
|
||
|
useInlineScript("qa_things_random");
|
||
|
---
|
||
|
<main>
|
||
|
<div>{number}</div>
|
||
|
<button>another</button>
|
||
|
</main>
|