mirror of
https://github.com/cpvalente/ontime.git
synced 2026-09-13 18:19:40 +00:00
12 lines
200 B
TypeScript
12 lines
200 B
TypeScript
import { useEffect } from 'react';
|
|
|
|
/**
|
|
* Sets tab title
|
|
* @param title
|
|
*/
|
|
export function useWindowTitle(title: string) {
|
|
useEffect(() => {
|
|
document.title = `Ontime - ${title}`;
|
|
}, []);
|
|
}
|