Projekt

Obecné

Profil

Stáhnout (498 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1 967f45fc Dominik Poch
import AnnotationItem from './annotationItem';
2
3 ac59aec1 Dominik Poch
/**
4
 * Creates a panel in the annotation screen that contains a list of annotations.
5
 * @returns Panel with a list of annotations.
6
 */
7 6d10fe14 Dominik Poch
export function AnnotationPanel() {
8 ac59aec1 Dominik Poch
    return (
9
        <div>
10
            <p>Panel with a list of annotations</p>
11 967f45fc Dominik Poch
            <AnnotationItem name={'tag a'} category={'kategorie 1'} occurrences={[]} />
12
            <AnnotationItem name={'tag b'} category={'kategorie 2'} occurrences={[]} />
13 ac59aec1 Dominik Poch
        </div>
14
    );
15
}