phodal/growth

View on GitHub
src/constants/sections/section-6.js

Summary

Maintainability
C
1 day
Test Coverage
import HELPER_ARTICLES from '../HELPER_ARTICLES';

const SECTION6 = {
  legacy: {
    title: '遗留系统',
    intros: [
      {
        info: { slug: 'legacy', type: 'desc' },
      },
    ],
    articlesView: [
      {
        title: '遗留系统',
        articles: HELPER_ARTICLES['zh-cn'].legacy,
      },
    ],
    skills: [],
    growthView: [
      {
        title: '遗留系统',
        sections: [
          {
            title: '书单',
            info: { type: 'book', domain: 'legacy' },
          },
        ],
      },
    ],
    todoView: [

    ],
  },
  refactor: {
    title: '重构',
    intros: [
      {
        info: { slug: 'refactor', type: 'desc' },
      },
    ],
    articlesView: [
      {
        title: '重构',
        articles: HELPER_ARTICLES['zh-cn'].refactor,
      },
    ],
    skills: [],
    growthView: [
      {
        title: '重构',
        sections: [
          {
            title: '书单',
            info: { type: 'book', domain: 'refactory' },
          },
        ],
      }],
    todoView: [

    ],
  },
};

export default SECTION6;