Skip to content
  • This project
    • Loading...
  • Sign in

Jay Mehta / zango-frontend

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Registry
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • zango-frontend
  • pages
  • user
  • profile
  • index.js
  • Jyotsna's avatar
    user journey - login, signup and profile page done · 746c0ed2
    Jyotsna committed 2024-02-23 13:23:17 +0530
    746c0ed2
index.js 273 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12
import React from "react";
import Layout from "../../../components/layout/Layout";
import MyProfile from "../../../components/user/MyProfile";

export default function UserProfilePage () {

    return (
        <Layout>
            <MyProfile />
        </Layout>
    );
};