1/** 2 * Copyright (c) 2023 Gitpod GmbH. All rights reserved. 3 * Licensed under the GNU Affero General Public License (AGPL). 4 * See License.AGPL.txt in the project root for license information. 5 */ 6 7import { useEffect } from "react"; 8 9export function useDocumentTitle(title?: string) { 10 useEffect(() => { 11 if (title && title.length > 0) { 12 document.title = title; 13 } 14 }, [title]); 15} 16 17