import type FNote from "../../entities/fnote.js";
import ViewMode from "./view_mode.js";
const TPL = `
Hello world.
`;
export default class CalendarView extends ViewMode {
private $root: JQuery;
constructor(viewType: string, $parent: JQuery, parentNote: FNote, noteIds: string[], showNotePath: boolean = false) {
super($parent, parentNote, noteIds, showNotePath);
this.$root = $(TPL);
$parent.append(this.$root);
}
async renderList(): Promise | undefined> {
return this.$root;
}
}