mirror of
https://gitlab.silvrtree.co.uk/martind2000/nci.git
synced 2025-01-11 21:55:09 +00:00
21 lines
476 B
JavaScript
21 lines
476 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', 'app/components/buildLog/index'
|
|
], function(
|
|
ProjectsComponents, BuildsComponents,
|
|
App, Header,
|
|
Dashboard, BuildLogComponent
|
|
) {
|
|
return {
|
|
App: App,
|
|
Header: Header,
|
|
Project: ProjectsComponents,
|
|
Build: BuildsComponents,
|
|
Dashboard: Dashboard,
|
|
BuildLog: BuildLogComponent
|
|
};
|
|
});
|