"use client"; import React from "react"; import { useRouter } from "next/navigation"; import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"; import { faAngleLeft, faTv, faImages, faSpa, } from "@fortawesome/free-solid-svg-icons"; export default function Editprofile() { const router = useRouter(); return (
{/* 头部标题 */}
{ router.back(); }} />

编辑资源

{/* 内容 */}
{ router.push("editprofile/editHome"); }} > {/* */}
编辑主页
{ router.push("editprofile/editPlace"); }} > 编辑平台
{ router.push("/space/setting/spaceIntroSetting/editStreamerMedia"); }} >
照片墙
); }