import { useId } from 'react'; import { Box, Text } from '@chakra-ui/react'; import { UnlockIcon } from '@chakra-ui/icons'; export function SelectFile() { const id = useId(); return ( {/* 将文件拖到此处,或 */} 点我选择 需要解密的文件 仅在浏览器内对文件进行解锁,无需消耗流量 ); }