mirror of
https://gitlab.silvrtree.co.uk/martind2000/nci.git
synced 2025-01-11 23:45:08 +00:00
12 lines
191 B
JavaScript
12 lines
191 B
JavaScript
'use strict';
|
|
|
|
define([
|
|
'app/components/projects/index',
|
|
'app/components/app',
|
|
], function(ProjectsComponents, App) {
|
|
return {
|
|
App: App,
|
|
ProjectsComponents: ProjectsComponents
|
|
};
|
|
});
|