12 lines
308 B
JavaScript
12 lines
308 B
JavaScript
|
import project from './project/index'
|
||
|
import dept from './dept/index'
|
||
|
import schedule from './schedule/index'
|
||
|
import quarterlyAssess from './quarterlyAssess/index'
|
||
|
import problemmodify from './problemmodify/index'
|
||
|
export default {
|
||
|
project,
|
||
|
dept,
|
||
|
schedule,
|
||
|
quarterlyAssess,
|
||
|
problemmodify
|
||
|
}
|