chapters.ts 412 B

12345678910111213
  1. export interface Chapter {
  2. name: string,
  3. description: string,
  4. chapterNum: number,
  5. to: string
  6. }
  7. const chapters: Chapter[] = [
  8. { name: 'learning.chapter.math.title', description: 'learning.chapter.math.description', chapterNum: 1, to: 'learning/math' },
  9. { name: 'learning.chapter.tf.title', description: 'learning.chapter.tf.description', chapterNum: 2, to: 'learning/tf' }
  10. ]
  11. export default chapters