import type { StationWithTags } from "~/models/station.server"; import type { ConvertDatesToStrings } from "~/utils"; export type StationPlayerProps = { station: ConvertDatesToStrings> }; export function StationPlayer({ station }: StationPlayerProps) { return (

Now Playing: {station.name}

); }