sp/src/pages/profile/index.astro

10 lines
229 B
Plaintext

---
import Layout from "../../layouts/Layout.astro";
// const phpHello = `$_SESSION['userName']`;
import UserProfile from "../../components/UserProfile";
---
<Layout title="Profile Page">
<UserProfile client:load />
</Layout>