import NumericStepper from '../ui/NumericStepper'; import type { Ship } from '../../types/ship'; interface Props { ship: Ship; onUpdate: (patch: Partial) => void; } export default function VitalsSection({ ship, onUpdate }: Props) { return (
onUpdate({ hull_current: v })} />
onUpdate({ armor_current: v })} />
); }