8 lines
196 B
JavaScript
8 lines
196 B
JavaScript
const damageCustomLabels = Object.freeze({
|
|
MATCH: 'match',
|
|
REAR_WINDOW: 'rear window',
|
|
SIDE_WINDOW: 'side window',
|
|
WINDSHIELD: 'windshield'
|
|
});
|
|
|
|
export default damageCustomLabels;
|