import { useState } from 'react' import * as m from 'paraglide/messages' import clsx from 'clsx' interface Props { discs: { number: number | null body: string | null }[] } export default function TrackList(props: Props) { const { discs = [] } = props const [current, setCurrent] = useState(0) return (
| {i + 1} | {track} |