10 lines
196 B
TypeScript
10 lines
196 B
TypeScript
import { redirect, type LoaderFunction } from "@remix-run/node";
|
|
|
|
export const loader: LoaderFunction = () => {
|
|
return redirect("/items");
|
|
};
|
|
|
|
export default function Index() {
|
|
return null;
|
|
}
|