10 lines
178 B
JavaScript
10 lines
178 B
JavaScript
/**
|
|
* Array of options.
|
|
*
|
|
* @type {Array<{ opzione: string, sezione: string }>}
|
|
*/
|
|
const OPZIONI = [
|
|
{ opzione: 'DIVRIF', sezione: 'GLOBALE' }
|
|
];
|
|
|
|
export default OPZIONI; |