mirror of
https://github.com/zadam/trilium.git
synced 2025-11-16 02:05:53 +01:00
12 lines
290 B
TypeScript
12 lines
290 B
TypeScript
|
|
import { useEffect } from "preact/hooks";
|
||
|
|
|
||
|
|
export function usePageTitle(title: string) {
|
||
|
|
useEffect(() => {
|
||
|
|
if (title.length) {
|
||
|
|
document.title = `${title} - Trilium Notes`;
|
||
|
|
} else {
|
||
|
|
document.title = "Trilium Notes";
|
||
|
|
}
|
||
|
|
}, [ title ]);
|
||
|
|
}
|