File size: 278 Bytes
cc1ccff
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import { useState } from "react";

// Manage UI behavior settings like loading style and typing animation
export function useUISettings() {
  const [settings, setSettings] = useState({
    loadingStyle: "dots",
    typingEnabled: true,
  });
  return [settings, setSettings];
}