import common from './common' const templates = { ...common } const templateArray = [] Object.keys(common).forEach(key => { if (common[key].dataTpl) templateArray.push(common[key].dataTpl) }) export { templateArray } export default templates