"use client"; import React from "react"; type Scope = "admin" | "user"; interface Props { scope: Scope; adminCount: number; userCount: number; onChange: (s: Scope) => void; } export function MenuScopePanel({ scope, adminCount, userCount, onChange }: Props) { return ( ); }