
- Created query to find stations by tag - UI - Created pages to list station gallery for channels and tags - Created <StationsGallery> component
9 lines
127 B
TypeScript
9 lines
127 B
TypeScript
import { Outlet } from "@remix-run/react";
|
|
|
|
|
|
export default function ListenLayout() {
|
|
return (
|
|
<Outlet />
|
|
);
|
|
}
|