replace sent/received bit panels

This commit is contained in:
Lewis Moten
2024-05-11 17:44:26 -04:00
parent 6895e5b7a2
commit 78568bdbaf
5 changed files with 61 additions and 49 deletions

11
Panels/CodePanel.js Normal file
View File

@@ -0,0 +1,11 @@
import BasePanel from './BasePanel';
class CodePanel extends BasePanel {
constructor(title) {
super(title);
this.addCode('code');
}
setCode = (html) => this.setHtmlById('code', html);
}
export default CodePanel;