"use client" import { createContext, useContext } from "react" type VehicleContextValue = { id: string label: string } const VehicleContext = createContext(null) export function VehicleProvider({ vehicle, children }: { vehicle: VehicleContextValue; children: React.ReactNode }) { return {children} } export function useVehicle() { return useContext(VehicleContext) }