mirror of
https://gitlab.silvrtree.co.uk/martind2000/nci.git
synced 2025-01-12 14:45:07 +00:00
15 lines
287 B
JavaScript
15 lines
287 B
JavaScript
'use strict';
|
|
|
|
define([
|
|
'react', 'templates/app/index', 'app/components/index',
|
|
'app/actions/project'
|
|
], function(
|
|
React, template, Components, ProjectActions
|
|
) {
|
|
React.render(template({
|
|
App: Components.App
|
|
}), document.getElementById('content'));
|
|
|
|
ProjectActions.readAll();
|
|
});
|