Merges the full git history of Inventory_frontend into the monorepo under frontend/. Removes the submodule in favor of a unified repo. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
13 lines
397 B
TypeScript
13 lines
397 B
TypeScript
/**
|
|
* Backward-compatible wrapper around useEntityHistory.
|
|
* Real logic lives in useEntityHistory.ts.
|
|
*/
|
|
import { useEntityHistory, type EntityHistoryActor, type EntityHistoryEntry } from './useEntityHistory'
|
|
|
|
export type ProductHistoryActor = EntityHistoryActor
|
|
export type ProductHistoryEntry = EntityHistoryEntry
|
|
|
|
export function useProductHistory() {
|
|
return useEntityHistory('product')
|
|
}
|