radio-station/app/components/station-player.tsx
Luke Bunselmeyer 5d0a7623e3 - UI
- Created home page to view all stations
- Model
  - Sort stations by popularity and filter stations by reliability
  - Type improvements
2023-05-07 15:19:00 -04:00

20 lines
662 B
TypeScript

import type { StationWithTagsClientSide } from "~/models/station.server";
export type StationPlayerProps = {
station: StationWithTagsClientSide
};
export function StationPlayer({ station }: StationPlayerProps) {
return (
<div
className="fixed bottom-0 left-0 w-full h-[70px] px-4 py-2 z-50 flex justify-end content-center items-center gap-2"
data-theme="aqua">
<h3 className="text-xl">Now Playing: <strong>{station.name}</strong></h3>
<audio controls autoPlay src={station.streamUrl}>
Your browser does not support the audio element.
</audio>
</div>
);
}