Skip to content

Instantly share code, notes, and snippets.

@arsenetoumani
arsenetoumani / vendors.js
Last active February 24, 2019 15:29
Systelos AngularJS to React - imports all of the dependencies (scripts only) from node_modules that the app needs
'use strict';
window.moment = require('moment');
window.$ = require('jquery');
window.jquery = window.$;
window.jQuery = window.$;
require("angular");
require("react");
require("react-dom");