add amplify
This commit is contained in:
9
dashboard_js/app/routes/auth/forgot/index.tsx
Normal file
9
dashboard_js/app/routes/auth/forgot/index.tsx
Normal file
@@ -0,0 +1,9 @@
|
||||
export default function Forgot() {
|
||||
return (
|
||||
<form>
|
||||
<h1>Verifique sua caixa de email para continuar</h1>
|
||||
Username
|
||||
<input />
|
||||
</form>
|
||||
);
|
||||
}
|
||||
0
dashboard_js/app/routes/auth/passcode/index.tsx
Normal file
0
dashboard_js/app/routes/auth/passcode/index.tsx
Normal file
8
dashboard_js/app/routes/auth/signin/index.tsx
Normal file
8
dashboard_js/app/routes/auth/signin/index.tsx
Normal file
@@ -0,0 +1,8 @@
|
||||
export default function Signin() {
|
||||
return (
|
||||
<form>
|
||||
Username
|
||||
<input />
|
||||
</form>
|
||||
);
|
||||
}
|
||||
8
dashboard_js/app/routes/auth/signup/index.tsx
Normal file
8
dashboard_js/app/routes/auth/signup/index.tsx
Normal file
@@ -0,0 +1,8 @@
|
||||
export default function Signup() {
|
||||
return (
|
||||
<form>
|
||||
Username
|
||||
<input />
|
||||
</form>
|
||||
);
|
||||
}
|
||||
3
dashboard_js/app/routes/enrollments/$id.tsx
Normal file
3
dashboard_js/app/routes/enrollments/$id.tsx
Normal file
@@ -0,0 +1,3 @@
|
||||
export default function Component() {
|
||||
return <>enrollments single</>;
|
||||
}
|
||||
3
dashboard_js/app/routes/enrollments/index.tsx
Normal file
3
dashboard_js/app/routes/enrollments/index.tsx
Normal file
@@ -0,0 +1,3 @@
|
||||
export default function Component() {
|
||||
return <>enrollments index</>;
|
||||
}
|
||||
@@ -1,13 +0,0 @@
|
||||
import type { Route } from "./+types/home";
|
||||
import { Welcome } from "../welcome/welcome";
|
||||
|
||||
export function meta({}: Route.MetaArgs) {
|
||||
return [
|
||||
// { title: "New React Router App" },
|
||||
{ name: "description", content: "Welcome to React Router!" },
|
||||
];
|
||||
}
|
||||
|
||||
export default function Home() {
|
||||
return <Welcome />;
|
||||
}
|
||||
3
dashboard_js/app/routes/orders/$id.tsx
Normal file
3
dashboard_js/app/routes/orders/$id.tsx
Normal file
@@ -0,0 +1,3 @@
|
||||
export default function Component() {
|
||||
return <>orders single</>;
|
||||
}
|
||||
3
dashboard_js/app/routes/orders/index.tsx
Normal file
3
dashboard_js/app/routes/orders/index.tsx
Normal file
@@ -0,0 +1,3 @@
|
||||
export default function Component() {
|
||||
return <>overview single</>;
|
||||
}
|
||||
3
dashboard_js/app/routes/overview/index.tsx
Normal file
3
dashboard_js/app/routes/overview/index.tsx
Normal file
@@ -0,0 +1,3 @@
|
||||
export default function Component() {
|
||||
return <>overview index</>;
|
||||
}
|
||||
3
dashboard_js/app/routes/users/$id.tsx
Normal file
3
dashboard_js/app/routes/users/$id.tsx
Normal file
@@ -0,0 +1,3 @@
|
||||
export default function Component() {
|
||||
return <>users single</>
|
||||
}
|
||||
3
dashboard_js/app/routes/users/index.tsx
Normal file
3
dashboard_js/app/routes/users/index.tsx
Normal file
@@ -0,0 +1,3 @@
|
||||
export default function Component() {
|
||||
return <>users index</>
|
||||
}
|
||||
Reference in New Issue
Block a user