DigitalConsumer.ISS/src/constants/damage-locations-selected.js

21 lines
512 B
JavaScript

const damageLocationsSelected = Object.freeze({
WINDSHIELD: 'Windshield',
SIDEDOOR: 'SideDoor',
REARWINDOW: 'RearWindow',
REPAIR: 'Repair',
REPLACE: 'Replace',
DRIVER: 'Driver',
PASSENGER: 'Passenger',
FRONT: 'Front',
REAR: 'Rear',
BACK: 'Back',
QUARTER: 'Quarter',
VENT: 'Vent',
SINGLE: 'Single',
DRIVERSIDE: 'DriverSide',
PASSENGERSIDE: 'PassengerSide',
STATIONARY: 'Stationary',
SLIDER: 'Slider'
});
export default damageLocationsSelected;