///
import {Component, View, bootstrap, NgClass} from 'angular2/angular2';
import {FileUploadSection} from './components/file-upload-section';
let gettingStarted = require('./getting-started.md');
@Component({
selector: 'app'
})
@View({
template: `
`,
directives: [
NgClass,
FileUploadSection
]
})
export class Demo {
}
bootstrap(Demo);