Template Upload

This commit is contained in:
SOUTHERNCO\x2mjbyrn
2017-05-17 13:45:25 -04:00
parent 415b9c25f3
commit 7efe7605b8
11476 changed files with 2170865 additions and 34 deletions
+9
View File
@@ -0,0 +1,9 @@
// a.js
var c = require("./c.js");
var b = require('./b.js');
module.exports = {
name: "a",
b: b,
c: c
};
+6
View File
@@ -0,0 +1,6 @@
import c from "./c.js";
export default {
name: "b",
c: c
};
+3
View File
@@ -0,0 +1,3 @@
module.exports = {
name: "c"
};