"use client";
import { useState } from "react";
import Account from "./account";
import Bank from "./bank";
import Tab from "./Tab";
const listTab = ["حساب کاربری", "حساب بانکی"];
function UserAccountPage({data}) {
const [value, setValue] = useState(1);
const handleChange = (event, newValue) => setValue(newValue);
const components = [