f8b5d42
1
2
3
4
5
6
7
8
9
10
11
import UserButton from "./UserButton"; export default function UserMenu({ children }) { return ( <div className="w-auto h-auto"> <UserButton /> {children} </div> ); }