import React from 'react'; import { strings } from '../res/strings'; import { stringsEn } from '../res/strings.en'; import { useAppStrings } from '@/os/useAppStrings'; /** 真机内层容器 (list/spring_back) 在 360 视口下的位置与尺寸,来自 compare_layouts diff_report */ const POPOVER_LEFT = 149; const POPOVER_TOP = 87; const POPOVER_WIDTH = 195; const POPOVER_HEIGHT = 109; export function MoreMenuPopover(props: { privacyProps: React.HTMLAttributes; permissionsProps: React.HTMLAttributes; onBackdropClick: () => void; }) { const { privacyProps, permissionsProps, onBackdropClick } = props; const s = useAppStrings(strings, stringsEn); return (
); }