mirror of
https://git.coastit.co.za/caitlin/CRM_ENVR.git
synced 2026-07-10 11:15:43 +02:00
10 lines
464 B
TypeScript
10 lines
464 B
TypeScript
// ── Generic Hook Template ────────────────────────────────────────────
|
|
// Auto-generated by self-healing setup.
|
|
// Placeholder for @/hooks/* imports. Customize as needed.
|
|
|
|
import { useState, useEffect } from "react";
|
|
|
|
export function useHook<T>(initialValue: T): [T, (value: T) => void] {
|
|
const [value, setValue] = useState(initialValue);
|
|
return [value, setValue];
|
|
} |