/* eslint-disable @typescript-eslint/no-explicit-any */
"use client";

import Profile from "@/screens/Profile/Profile";

export default function ProfilePage({ params }: any) {
  const { id } = params;
  /**
   * APPLY LOGIC IF NECESSARY
   */
  return <Profile id={id} />; /** ONLY RETURN A SINGLE COMPONENT */
} 
