kandimat-user-app/src/data/options.js
Christoph Lienhard d18e78cb8f Clean-up data structure
* Remove xlsx data source
* Remove scripts to convert xlsx to json
* Convert data jsons into js files as a first step towards using a proper backend call for retrieval
* Remove dependencies related to xlsx
2020-05-03 12:32:35 +02:00

21 lines
237 B
JavaScript

const options = [
{
'position': 'positive',
'id': 0
},
{
'position': 'neutral',
'id': 1
},
{
'position': 'negative',
'id': 2
},
{
'position': 'skipped',
'id': 3
}
]
export default options