駅時刻表のコア情報を作成

This commit is contained in:
harukin-expo-dev-env
2025-08-25 15:54:40 +00:00
parent 2f558cddb2
commit c00034a11b
9 changed files with 484 additions and 20 deletions

View File

@@ -0,0 +1,18 @@
import { FC } from "react";
import { ListViewItem } from "@/components/StationDiagram/ListViewItem";
export const ListView: FC<{ data: {
trainNumber: string;
array: string;
name: string;
type: string;
time: string;
}[]; }> = ({ data }) => {
return (
<>
{data.map((d, i) => (
<ListViewItem key={d.trainNumber + i} d={d} />
))}
</>
);
};