process.env.NODE_ENV = "production"; import { observable } from "mobx"; import { list } from "socket-function/src/misc"; import { css } from "typesafecss"; import { URLParam } from "../render-utils/URLParam"; import { observer } from "../render-utils/observer"; import * as preact from "preact"; const exampleUrlParam = new URLParam("example", ""); @observer export class ExamplePage extends preact.Component { synced = observable({ count: 0, }); render() { return (

Hello from Web! 3

Count: {this.synced.count}

{list(1000).map(x =>
{x}
)}
); } }