
- Moved source routes under `/listen` and required user to access - Fixed player color - Fixed page title - Updated favicon
15 lines
333 B
TypeScript
15 lines
333 B
TypeScript
import type { LoaderArgs } from "@remix-run/node";
|
|
import { Outlet } from "@remix-run/react";
|
|
import { requireUser } from "~/session.server";
|
|
|
|
export async function loader({ request }: LoaderArgs) {
|
|
await requireUser(request);
|
|
return null;
|
|
}
|
|
|
|
export default function SourceLayout() {
|
|
return (
|
|
<Outlet />
|
|
);
|
|
}
|