import React from 'react'; interface UnitSystemToggleProps { currentSystem: 'metric' | 'imperial'; onToggle: () => void; } export const UnitSystemToggle: React.FC = ({ currentSystem, onToggle }) => { const isImperial = currentSystem === 'imperial'; return (
Metric Imperial
); };