export default class ListButton{ constructor(icon, actions){ this.icon = icon; this.actions = actions; } render() { this.actionButton = document.createElement('button'); this.actionButton.classList.add('btn', 'btn-outline-secondary'); this.actionButton.innerHTML = ``; return this.actionButton; } }