Initial Commit ES6 barebone
This commit is contained in:
13
src/index.js
Normal file
13
src/index.js
Normal file
@@ -0,0 +1,13 @@
|
||||
import Backbone from 'backbone';
|
||||
import TestView from './view';
|
||||
import _ from 'underscore';
|
||||
|
||||
Backbone.history.start();
|
||||
|
||||
class Index {
|
||||
constructor() {
|
||||
new TestView();
|
||||
}
|
||||
}
|
||||
|
||||
new Index();
|
||||
Reference in New Issue
Block a user