mirror of
https://github.com/ankitects/anki.git
synced 2025-09-23 16:26:40 -04:00
24 lines
522 B
Svelte
24 lines
522 B
Svelte
<!--
|
|
Copyright: Ankitects Pty Ltd and contributors
|
|
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
-->
|
|
<script lang="ts">
|
|
import type { Stats } from "../lib/proto";
|
|
import CardStats from "./CardStats.svelte";
|
|
import Revlog from "./Revlog.svelte";
|
|
|
|
export let stats: Stats.CardStatsResponse;
|
|
</script>
|
|
|
|
<div class="container">
|
|
<div>
|
|
<CardStats {stats} />
|
|
<Revlog {stats} />
|
|
</div>
|
|
</div>
|
|
|
|
<style>
|
|
.container {
|
|
max-width: 40em;
|
|
}
|
|
</style>
|