import { useState } from 'react';

/**
 * Simple custom hook: [HookName]
 * 
 * This hook manages a single state value.
 */
export function [HookName](initialValue: any) {
  const [value, setValue] = useState(initialValue);

  return [value, setValue];
}