import { DialogProps } from "@radix-ui/react-dialog"; import React, { FC } from "react"; import { Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, } from "@/components/ui/dialog" import { Button } from "../ui/button"; interface UserProfileProps { } export default function ({ onOpenChange, ...props }: UserProfileProps & React.ComponentProps>) { return ( 账户信息 新密码长度在6-32位之间,且至少包含一个字母和一个数字,可以包含特殊字符
开发中...
) }