Socialify

Folder ..

Viewing index.ts
15 lines (13 loc) • 271.0 B

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
import bicycle from './bicycle';
import fuel from './fuel';
import manufacturer from './manufacturer';
import model from './model';
import type_ from './type';

const vehicle: any = {
  bicycle,
  fuel,
  manufacturer,
  model,
  type: type_,
};

export default vehicle;