diff options
author | HombreLaser <sebastian-440@live.com> | 2023-05-07 23:38:21 -0600 |
---|---|---|
committer | HombreLaser <sebastian-440@live.com> | 2023-05-07 23:38:21 -0600 |
commit | ab540055c99074c1c67fd65b45d0afb785ca5a0b (patch) | |
tree | 67a558cfb504090e3064be9db954a11df3926cdc /src/routes/account | |
parent | f4ea6fb6c577d41f72cc33283e42492e03833f00 (diff) |
Añade ruta de cuenta de usuario
Diffstat (limited to 'src/routes/account')
-rw-r--r-- | src/routes/account/account.tsx | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/routes/account/account.tsx b/src/routes/account/account.tsx index 57ea748..baca1a5 100644 --- a/src/routes/account/account.tsx +++ b/src/routes/account/account.tsx @@ -1,6 +1,14 @@ +import { useLoaderData } from "react-router-dom"; +import MainContentLayout from "../../components/main_content_layout"; + export default function Account() { return( <> + <MainContentLayout> + <h2> + Cuenta + </h2> + </MainContentLayout> </> ); }
\ No newline at end of file |