Socialify

Folder ..

Viewing index.ts
13 lines (11 loc) • 284.0 B

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
import color from './color';
import department from './department';
import product_description from './product_description';
import product_name from './product_name';

const commerce: any = {
  color,
  department,
  product_description,
  product_name,
};

export default commerce;