import type { StationWithTagsClientSide } from "~/models/station.server"; export type StationPlayerProps = { station: StationWithTagsClientSide | null }; export function StationPlayer({ station }: StationPlayerProps) { if (!station) { return <>; } return (

Now Playing: {station.name}

); }