"use client"; import React from "react"; import { Paper, List, ListItemButton, ListItemIcon, ListItemText, } from "@mui/material"; import AccountCircleIcon from "@mui/icons-material/AccountCircle"; import SecurityIcon from "@mui/icons-material/Security"; interface Props { active: "personal" | "account"; onChange: (section: "personal" | "account") => void; } const SettingsSidebar: React.FC = ({ active, onChange }) => { return ( onChange("personal")} > onChange("account")} > ); }; export default SettingsSidebar;