🆙 New: Added a new Chat window, handy for in game / building etc.

This commit is contained in:
duckietm
2026-02-23 13:18:35 +01:00
parent 8d62a81652
commit 291fdf80dc
9 changed files with 298 additions and 7 deletions
+7
View File
@@ -0,0 +1,7 @@
import { useBetween } from 'use-between';
import { LocalStorageKeys } from '../api';
import { useLocalStorage } from './useLocalStorage';
const useChatWindowState = () => useLocalStorage(LocalStorageKeys.CHAT_WINDOW_ENABLED, false);
export const useChatWindow = () => useBetween(useChatWindowState);