import { Component, h } from 'preact'; import { AnnotationSourcesList } from '../components/AnnotationSourcesList'; import classes from './Overview.module.scss'; interface OverviewProps {} interface OverviewState {} export class Overview extends Component { render({}: OverviewProps, {}: OverviewState) { return (

Your annotation library

Below are the annotation from feeds you are subscribed to, and other annotations you imported to your annotation library.

); } }