Skip to content

Instantly share code, notes, and snippets.

@hoorayimhelping
Created September 15, 2015 20:49
Show Gist options
  • Save hoorayimhelping/54a8298f8e86a0fa732b to your computer and use it in GitHub Desktop.
Save hoorayimhelping/54a8298f8e86a0fa732b to your computer and use it in GitHub Desktop.
diff --git a/gulpfile.js b/gulpfile.js
index 07dc605..557fa54 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -13,7 +13,9 @@ var react = require('gulp-react');
var paths = {
'js_source': 'js/graph/',
'js_test': 'js/test/',
- 'js_dist': 'dist/'
+ 'js_dist': 'dist/',
+ 'react_source': 'js/views/',
+ 'react_dist': 'js/views'
};
gulp.task('env-dev', function() {
diff --git a/index.html b/index.html
new file mode 100644
index 0000000..d28bcb6
--- /dev/null
+++ b/index.html
@@ -0,0 +1,10 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title></title>
+</head>
+
+<body>
+</body>
+
+</html>
\ No newline at end of file
diff --git a/js/views/main.jsx b/js/views/main.jsx
new file mode 100644
index 0000000..51957d0
--- /dev/null
+++ b/js/views/main.jsx
@@ -0,0 +1 @@
+var react = require('react');
\ No newline at end of file
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment