consts.js 298 Bytes
Newer Older
zhanghaozhe committed
1 2 3 4 5 6 7 8 9
export const questionType = {
  text: 1,
  image: 2,
  singleAnswer: 3,
  codeBlock: 4,
  program: 5,
}

export const status = {
zhanghaozhe committed
10 11 12
  practicingSingle: '练习中...',
  practicingProgram: '练习中...(无法运行时退出重进即可)',
  resumePractice: '继续',
zhanghaozhe committed
13 14
  nextSection: '下一关',
}