radio-station/app/routes/listen.tsx
Luke Bunselmeyer 8d06e911d9 - Models
- Created query to find stations by tag
- UI
  - Created pages to list station gallery for channels and tags
  - Created <StationsGallery> component
2023-05-07 12:31:18 -04:00

9 lines
127 B
TypeScript

import { Outlet } from "@remix-run/react";
export default function ListenLayout() {
return (
<Outlet />
);
}