feat(frontend): add HistoryCard + HistoryList

This commit is contained in:
devilreef 2026-04-30 09:42:16 +06:00
parent 65d88be032
commit 01c281ca80
Signed by: devilreef
SSH key fingerprint: SHA256:UZisRr4iuXx+IhkbZnR655L2RWAT6o2rgbGv5F/6m3Y
3 changed files with 88 additions and 0 deletions

View file

@ -0,0 +1,12 @@
---
import { HistoryList } from './HistoryList';
interface Props { station: string; }
const { station } = Astro.props;
---
<div class="card history">
<div class="full-secthead">
<div class="full-secthead-jp">再生履歴</div>
<div class="full-secthead-en">// recently played</div>
</div>
<HistoryList station={station} client:visible />
</div>