summaryrefslogtreecommitdiff
path: root/src/screens/professor/Classroom/tabOptions.js
blob: fdc3e98679ae95302aad8be5a639d999ddf9744e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
const TAB_OPTIONS = {
  announcements: {
    value: 0,
    lable: 'Comunicados',
  },
  assignments: {
    value: 1,
    lable: 'Atividades',
  },
  people: {
    value: 2,
    lable: 'Pessoas',
  },
  grades: {
    value: 3,
    lable: 'Notas',
  },
};

export { TAB_OPTIONS };