mirror of
https://github.com/shishantbiswas/bknd.git
synced 2026-03-16 12:37:20 +00:00
9 lines
216 B
TypeScript
9 lines
216 B
TypeScript
import { useLayoutEffect } from "react";
|
|
|
|
export function useBrowserTitle(path: string[] = []) {
|
|
useLayoutEffect(() => {
|
|
const prefix = "BKND";
|
|
document.title = [prefix, ...path].join(" / ");
|
|
});
|
|
}
|