wip
This commit is contained in:
@@ -5,5 +5,5 @@ export default function Forgot() {
|
||||
Username
|
||||
<input />
|
||||
</form>
|
||||
);
|
||||
)
|
||||
}
|
||||
|
||||
@@ -4,5 +4,5 @@ export default function Signin() {
|
||||
Username
|
||||
<input />
|
||||
</form>
|
||||
);
|
||||
)
|
||||
}
|
||||
|
||||
@@ -4,5 +4,5 @@ export default function Signup() {
|
||||
Username
|
||||
<input />
|
||||
</form>
|
||||
);
|
||||
)
|
||||
}
|
||||
|
||||
@@ -1,3 +1,3 @@
|
||||
export default function Component() {
|
||||
return <>enrollments single</>;
|
||||
return <>enrollments single</>
|
||||
}
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
export function meta({}) {
|
||||
return [{ title: "Matrículas" }];
|
||||
return [{ title: 'Matrículas' }]
|
||||
}
|
||||
|
||||
export default function Component() {
|
||||
return <>enrollments index</>;
|
||||
return <>enrollments index</>
|
||||
}
|
||||
|
||||
@@ -4,5 +4,5 @@ export default function Component() {
|
||||
<title>Pagamentos</title>
|
||||
<p>orders single</p>
|
||||
</>
|
||||
);
|
||||
)
|
||||
}
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
export function meta({}) {
|
||||
return [{ title: "Pagamentos" }];
|
||||
return [{ title: 'Pagamentos' }]
|
||||
}
|
||||
|
||||
export default function Component() {
|
||||
return <>overview single</>;
|
||||
return <>overview single</>
|
||||
}
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
export function meta({}) {
|
||||
return [{ title: "Visão geral" }];
|
||||
return [{ title: 'Visão geral' }]
|
||||
}
|
||||
|
||||
export default function Component() {
|
||||
return <>overview index</>;
|
||||
return <>overview index</>
|
||||
}
|
||||
|
||||
@@ -1,17 +1,17 @@
|
||||
import { useSuspenseQuery } from "@tanstack/react-query";
|
||||
import { useSuspenseQuery } from '@tanstack/react-query'
|
||||
|
||||
export function meta({}) {
|
||||
return [{ title: "Usuários" }];
|
||||
return [{ title: 'Usuários' }]
|
||||
}
|
||||
|
||||
export default function Component() {
|
||||
const info = useSuspenseQuery({
|
||||
queryKey: ["todos"],
|
||||
queryKey: ['todos'],
|
||||
queryFn: async () => {
|
||||
await new Promise((r) => setTimeout(r, 3000));
|
||||
return { data: "todos" };
|
||||
await new Promise((r) => setTimeout(r, 3000))
|
||||
return { data: 'todos' }
|
||||
},
|
||||
});
|
||||
})
|
||||
|
||||
return <>users index</>;
|
||||
return <>users index</>
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user