File size: 2,034 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
export type Component = {
  title: string;
  subtitle?: string;
  cover: string;
  coverDark?: string;
  link: string;
  tag?: string;
};

const proComponentsList: Component[] = [
  {
    cover: 'https://gw.alipayobjects.com/zos/antfincdn/4n5H%24UX%24j/bianzu%2525204.svg',
    link: 'https://procomponents.ant.design/components/layout',
    subtitle: '高级布局',
    title: 'ProLayout',
    tag: 'https://gw.alipayobjects.com/zos/antfincdn/OG4ajVYzh/bianzu%2525202.svg',
  },
  {
    cover: 'https://gw.alipayobjects.com/zos/antfincdn/mStei5BFC/bianzu%2525207.svg',
    link: 'https://procomponents.ant.design/components/form',
    subtitle: '高级表单',
    title: 'ProForm',
    tag: 'https://gw.alipayobjects.com/zos/antfincdn/OG4ajVYzh/bianzu%2525202.svg',
  },
  {
    cover: 'https://gw.alipayobjects.com/zos/antfincdn/AwU0Cv%26Ju/bianzu%2525208.svg',
    link: 'https://procomponents.ant.design/components/table',
    subtitle: '高级表格',
    title: 'ProTable',
    tag: 'https://gw.alipayobjects.com/zos/antfincdn/OG4ajVYzh/bianzu%2525202.svg',
  },
  {
    cover: 'https://gw.alipayobjects.com/zos/antfincdn/H0%26LSYYfh/bianzu%2525209.svg',
    link: 'https://procomponents.ant.design/components/descriptions',
    subtitle: '高级定义列表',
    title: 'ProDescriptions',
    tag: 'https://gw.alipayobjects.com/zos/antfincdn/OG4ajVYzh/bianzu%2525202.svg',
  },
  {
    cover: 'https://gw.alipayobjects.com/zos/antfincdn/uZUmLtne5/bianzu%2525209.svg',
    link: 'https://procomponents.ant.design/components/list',
    subtitle: '高级列表',
    title: 'ProList',
    tag: 'https://gw.alipayobjects.com/zos/antfincdn/OG4ajVYzh/bianzu%2525202.svg',
  },
  {
    cover: 'https://gw.alipayobjects.com/zos/antfincdn/N3eU432oA/bianzu%2525209.svg',
    link: 'https://procomponents.ant.design/components/editable-table',
    subtitle: '可编辑表格',
    title: 'EditableProTable',
    tag: 'https://gw.alipayobjects.com/zos/antfincdn/OG4ajVYzh/bianzu%2525202.svg',
  },
];

export default proComponentsList;