mirror of
https://github.com/jcreek/EstimationPoker.git
synced 2026-07-13 02:53:46 +00:00
feat(*): Add basic example estimation page
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
<script lang="ts">
|
||||
export let estimates: any;
|
||||
export let handleEstimateChange: any;
|
||||
</script>
|
||||
|
||||
<div id="users-list">
|
||||
<h2>Users</h2>
|
||||
<ul>
|
||||
{#each estimates as user}
|
||||
<li>
|
||||
{user.name}
|
||||
<input
|
||||
type="number"
|
||||
value={user.estimate}
|
||||
on:input={(e) => handleEstimateChange(e, user)}
|
||||
/>
|
||||
</li>
|
||||
{/each}
|
||||
</ul>
|
||||
</div>
|
||||
Reference in New Issue
Block a user