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