'use client'; import * as React from "react" import { cn } from "@/lib/utils" import { Button } from "@/components/ui/button" import { Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerTitle, } from "@/components/ui/drawer" import { Input } from "@/components/ui/input" import { Label } from "@/components/ui/label" export function UserInfoEditor({ onClose, userId, }: { onClose: () => void, userId: string }) { return ( 编辑用户信息 确保你在保存之前检查所有更改 ) } function ProfileForm({ className }: React.ComponentProps<"form">) { return (
) }