Projekt

Obecné

Profil

Stáhnout (976 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1
import { AnnotationPanel } from '../../components/annotation/annotationPanel';
2
import { DocumentAnnotationView } from '../../components/annotation/documentAnnotationView';
3
import { TagPanel } from '../../components/annotation/tagPanel';
4
import { MainLayout } from '../../layouts/mainLayout';
5
import 'antd/dist/antd.css';
6
import styles from '/styles/annotation.module.scss';
7

    
8
/**
9
 * Creates an annotation screen.
10
 * @returns The annotation screen.
11
 */
12
function Annotation() {
13
    return (
14
        <MainLayout>
15
            <div className={styles.layoutwrapper}>
16
                <div className={styles.tags}>
17
                    <TagPanel />
18
                </div>
19
                <div className={styles.document}>
20
                    <DocumentAnnotationView />
21
                </div>
22
                <div className={styles.annotations}>
23
                    <AnnotationPanel />
24
                </div>
25
            </div>
26
        </MainLayout>
27
    );
28
}
29

    
30
export default Annotation;
    (1-1/1)