import React from 'react'; import { Form } from '@remix-run/react'; interface HeaderProps { username: string; } export function Header({ username }: HeaderProps) { return (
个人资料 账号设置
); }