1/** 2 * Copyright (c) 2021-2022 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16const folderLayoutInfo = { 17 folderLayoutTable: 18 { 19 id: 0, 20 layout: '3X3', 21 name: '3X3', 22 row: 3, 23 column: 3, 24 area: [2, 2], 25 checked: false 26 }, 27 folderOpenLayoutTable: 28 { 29 id: 1, 30 layout: '4X3', 31 name: '4X3', 32 row: 4, 33 column: 3, 34 checked: false 35 }, 36 folderAddAppLayoutTable: 37 { 38 id: 2, 39 layout: '6X4', 40 name: '6X4', 41 row: 6, 42 column: 4, 43 checked: false 44 } 45}; 46 47export default folderLayoutInfo;