tailfin/web/app/routes/_index.tsx
2024-01-02 17:41:11 -06:00

6 lines
103 B
TypeScript

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