7871c69aa3
(Without avatars yet.)
16 lines
336 B
JavaScript
16 lines
336 B
JavaScript
'use strict';
|
|
|
|
const BaseView = require('./base_view.js');
|
|
|
|
class UserSummaryView extends BaseView {
|
|
constructor() {
|
|
super();
|
|
this.template = this.getTemplate('user-summary-template');
|
|
}
|
|
|
|
render(options) {
|
|
options.target.innerHTML = this.template(options);
|
|
}
|
|
}
|
|
|
|
module.exports = UserSummaryView;
|