signal-desktop/ts/hooks/useUniqueId.ts

10 lines
230 B
TypeScript
Raw Normal View History

2021-11-30 21:14:25 -05:00
// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import { useMemo } from 'react';
import { v4 as uuid } from 'uuid';
export function useUniqueId(): string {
return useMemo(() => uuid(), []);
}