= ({ annotation, offsetTop, repository, dispatch
>
-
+
@@ -347,7 +350,7 @@ const reducer = (state: State, action: Action): State => {
}
};
-const Annotate: FC = ({ source, repository }) => {
+const Annotate: FC = ({ source, repository, baseDate }) => {
const [state, dispatch] = useReducer(reducer, initialState);
const defaultRenderer = ({ rows, stylesheet, useInlineStyles }: any) => {
@@ -378,7 +381,13 @@ const Annotate: FC = ({ source, repository }) => {
let popover = null;
if ((state.onPopover || state.onLine) && state.annotation) {
popover = (
-
+
);
}