File size: 273 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
import { inc, get } from './action'
export async function Server() {
const x = await get()
return (
<>
<h2 id="value">Value = {x}</h2>
<form>
<button id="server-inc" formAction={inc}>
Inc
</button>
</form>
</>
)
}
|