This commit is contained in:
Tommy D. Rossi
2025-12-30 14:25:19 +01:00
parent b19b7ae72d
commit 3decc28242
16 changed files with 612 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
import { redirect } from 'react-router';
export const loader = () => {
return redirect('https://github.com/remorses/playwriter');
};
export default function Index() {
return null;
}