ReactJS
1import React from 'react';
2import styles from './controlpanel.css';
3import {KarmaController} from "./KarmaController";
4import {CommentBlock} from "./CommentBlock";
5import {ActionShare} from "./ActionShare";
6import {ActionSave} from "./ActionSave";
7
8export function ControlPanel() {
9return (
10<div className={styles.controls}>
11<KarmaController/>
12<CommentBlock/>
13<div className={styles.actions}>
14<ActionShare/>
15<ActionSave/>
16</div>
17</div>
18);
19}
20