'use strict';
const {ipcRenderer} = require('electron');
const BaseComponent = require(__dirname + '/../../components/base.js');
class GeneralSection {
constructor(props) {
this.props = props;
}
template() {
return `
Manage Servers
Existing Servers
`;
}
init() {
this.props.$root.innerHTML = '';
this.initActions();
}
initActions() {
}
handleServerInfoChange(index) {
ipcRenderer.send('reload-main');
}
}
module.exports = GeneralSection;