ui: Display score grid in team page
Some checks are pending
continuous-integration/drone/push Build is running

This commit is contained in:
nemunaire 2022-06-06 14:40:18 +02:00
commit 39acdee6b2
5 changed files with 114 additions and 0 deletions

View file

@ -13,12 +13,14 @@
Alert,
Badge,
Card,
CardHeader,
Col,
Container,
Icon,
Row,
} from 'sveltestrap';
import ScoreGrid from '../components/ScoreGrid.svelte';
import TeamChangeName from '../components/TeamChangeName.svelte';
import TeamMembers from '../components/TeamMembers.svelte';
@ -45,6 +47,13 @@
{/if}
</Col>
<Col md>
<Card>
<CardHeader>
<Icon name="table" />
Détail du score
</CardHeader>
<ScoreGrid />
</Card>
<!--BrowserNotify /-->
</Col>
</Row>