Files
um-react/src/features/settings/panels/QMCv2/InstructionsIOS.tsx
2025-05-18 09:58:34 +09:00

37 lines
1.4 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { InstructionsIOSCondition } from './InstructionsIOSCondition';
import { useId } from 'react';
export function InstructionsIOS() {
const iosInstructionId = useId();
return (
<>
<div>
<p>iOS 使 PC Mac iOS </p>
<p> PC Mac </p>
</div>
<div className="join join-vertical bg-base-100 mt-2 max-w-full">
<div className="collapse collapse-arrow join-item border-base-300 border">
<input type="radio" name={iosInstructionId} />
<div className="collapse-title font-semibold">
iOS <strong></strong>{' '}
</div>
<div className="collapse-content text-sm min-w-0">
<InstructionsIOSCondition jailbreak={true} />
</div>
</div>
<div className="collapse collapse-arrow join-item border-base-300 border">
<input type="radio" name={iosInstructionId} />
<div className="collapse-title font-semibold">
iOS <strong></strong>
</div>
<div className="collapse-content text-sm min-w-0">
<InstructionsIOSCondition jailbreak={false} />
</div>
</div>
</div>
</>
);
}