Projekt

Obecné

Profil

Stáhnout (498 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1
import AnnotationItem from './annotationItem';
2

    
3
/**
4
 * Creates a panel in the annotation screen that contains a list of annotations.
5
 * @returns Panel with a list of annotations.
6
 */
7
export function AnnotationPanel() {
8
    return (
9
        <div>
10
            <p>Panel with a list of annotations</p>
11
            <AnnotationItem name={'tag a'} category={'kategorie 1'} occurrences={[]} />
12
            <AnnotationItem name={'tag b'} category={'kategorie 2'} occurrences={[]} />
13
        </div>
14
    );
15
}
(2-2/4)