import React from 'react' import styles from './index.module.scss' import history from '@/utils/history' type Props = { unityId?: '1' | '2' } function FloorBtn({ unityId }: Props) { return (
{/* 更多 跳新页面 */}
history.push('/more')}>
) } const MemoFloorBtn = React.memo(FloorBtn) export default MemoFloorBtn