"use client"; import { useState } from "react"; import type { JourneyProgress } from "@/lib/birth-time-journey-turn"; import { protectOnboardingPhrases } from "@/lib/onboarding-copy"; type BirthTimeGuideTurnProps = { readonly question: string; readonly progress: JourneyProgress; readonly pending: boolean; readonly onSubmit: (message: string) => void; readonly onSkip: () => void; readonly onPause: () => void; }; export function BirthTimeGuideTurn(props: BirthTimeGuideTurnProps) { const [message, setMessage] = useState(""); const phase = props.progress.adaptiveRound > 0 ? `自适应第 ${props.progress.adaptiveRound} / ${props.progress.maxAdaptiveRounds} 轮` : "基础证据"; return (
{protectOnboardingPhrases(props.question)}
说出大概年份也可以,不需要为了校正而猜测。