aboutsummaryrefslogtreecommitdiff
path: root/src/index.js
blob: f29efc17d2740c40854d4acef21daf075b531a56 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import Backbone from 'backbone';
import TestView from './view';
import _ from 'underscore';

Backbone.history.start();

class Index {
    constructor() {
        new TestView();
    }
}

new Index();