mirror of
https://github.com/haiwen/seahub.git
synced 2025-09-19 18:29:23 +00:00
11 lines
186 B
JavaScript
11 lines
186 B
JavaScript
export const VIEW_TYPE = {
|
|
TABLE: 'table',
|
|
GALLERY: 'gallery'
|
|
};
|
|
|
|
export const VIEW_TYPE_ICON = {
|
|
[VIEW_TYPE.TABLE]: 'table',
|
|
[VIEW_TYPE.GALLERY]: 'image',
|
|
'image': 'image'
|
|
};
|