mirror of
https://gitlab.silvrtree.co.uk/martind2000/nci.git
synced 2025-01-11 21:55:09 +00:00
18 lines
390 B
JavaScript
18 lines
390 B
JavaScript
'use strict';
|
|
|
|
define([
|
|
'app/components/projects/index',
|
|
'app/components/builds/index',
|
|
'app/components/app/index',
|
|
'app/components/header/index',
|
|
'app/components/dashboard/index'
|
|
], function(ProjectsComponents, BuildsComponents, App, Header, Dashboard) {
|
|
return {
|
|
App: App,
|
|
Header: Header,
|
|
Project: ProjectsComponents,
|
|
Build: BuildsComponents,
|
|
Dashboard: Dashboard
|
|
};
|
|
});
|