summaryrefslogtreecommitdiff
path: root/client/src/components/steering.js
blob: 5c52d668ab5f1a226bf7d41e3918cdc3b0ed38eb (plain)
1
2
3
4
5
6
7
8
import steeringWheel from '../steering_wheel.png'
export function Steering({steeringAngle, maxSteeringAngle}) {
  return (
    <div>
      <img src={steeringWheel} width={200} style={{transform: `rotate(${-1 * steeringAngle}rad)`}} />
    </div>
  );
}