12 lines
359 B
Text
12 lines
359 B
Text
---
|
|
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>
|