Socialify

Folder ..

Viewing index.ts
19 lines (17 loc) • 378.0 B

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
import adjective from './adjective';
import adverb from './adverb';
import conjunction from './conjunction';
import interjection from './interjection';
import noun from './noun';
import preposition from './preposition';
import verb from './verb';

const word: any = {
  adjective,
  adverb,
  conjunction,
  interjection,
  noun,
  preposition,
  verb,
};

export default word;