Add react setup

Signed-off-by: gearnode <bryan@frimin.fr>
This commit is contained in:
gearnode
2025-01-31 21:01:21 -08:00
parent 1bcf32c3b2
commit b3dcfc6b53
18 changed files with 4936 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
import { Outlet } from "react-router";
export default function AuthenticateLayout() {
return (
<div>
<Outlet />
</div>
)
}