mokinzhao 6b7da6136e Revert "update: show shop component"
This reverts commit 0718f048b5f3f5056607a60ce2ec0035c723009d.
2021-09-30 16:27:58 +08:00

13 lines
385 B
TypeScript

import ZhuanLan from './ZhuanLan/template';
import Tab from './Tab/template';
import List from './List/template';
import Coupons from './Coupons/template';
import CardLabel from './CardLabel/template';
const basicTemplate = [ZhuanLan, List, Tab, Coupons, CardLabel];
const ShopTemplate = basicTemplate.map(v => {
return { ...v, category: 'shop' };
});
export default ShopTemplate;