headplane/app/routes/_index.tsx

6 lines
103 B
TypeScript
Raw Normal View History

2024-03-25 17:51:11 -04:00
import { redirect } from '@remix-run/node'
2024-03-25 17:51:11 -04:00
export function loader() {
return redirect('/machines')
}