import { PlatformActionButton } from '../common/PlatformActionButton'; import { UnifiedModal } from '../common/UnifiedModal'; type MobileHomeWelcomeDecisionInput = { isDesktopLayout: boolean; selectionStage: string; platformTab: string; pathname: string; }; type MobileHomeWelcomeOpenInput = MobileHomeWelcomeDecisionInput & { isDismissed: boolean; }; type PlatformActiveMobileWelcomeDialogProps = { open: boolean; platformThemeClass: string; onClose: () => void; }; export function shouldShowActiveMobileWelcomeDialog({ isDesktopLayout, }: MobileHomeWelcomeDecisionInput) { return !isDesktopLayout; } export function shouldOpenActiveMobileWelcomeDialog({ isDismissed, ...decisionInput }: MobileHomeWelcomeOpenInput) { return !isDismissed && shouldShowActiveMobileWelcomeDialog(decisionInput); } export function PlatformActiveMobileWelcomeDialog({ open, platformThemeClass, onClose, }: PlatformActiveMobileWelcomeDialogProps) { return ( 好 } >

欢迎

尼嚎,新陶泥er!
移动端仅支持作品展示
体验创作工具请使用电脑端访问该地址

); }