17 lines
398 B
JavaScript
17 lines
398 B
JavaScript
import Comparative from './Comparative.js'
|
|
import Gerund from './Gerund.js'
|
|
import Participle from './Participle.js'
|
|
import PastTense from './PastTense.js'
|
|
import PresentTense from './PresentTense.js'
|
|
import Superlative from './Superlative.js'
|
|
import AdjToNoun from './AdjToNoun.js'
|
|
|
|
export default {
|
|
Comparative,
|
|
Gerund,
|
|
Participle,
|
|
PastTense,
|
|
PresentTense,
|
|
Superlative,
|
|
AdjToNoun,
|
|
} |