Typescript
1export async function getUser() {
2 const res = await fetch("/api/user");
3 return res.json();
4}Overview
This project demonstrates authentication, SSR, and API routes.
Typescript
1export async function getUser() {
2 const res = await fetch("/api/user");
3 return res.json();
4}Overview
This project demonstrates authentication, SSR, and API routes.
