mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-01-15 13:43:39 +01:00
7 lines
192 B
TypeScript
7 lines
192 B
TypeScript
import { useQuery } from '@tanstack/react-query';
|
|
import { getVersion } from '@tauri-apps/api/app';
|
|
|
|
export function useAppVersion() {
|
|
return useQuery<string>(['appVersion'], getVersion);
|
|
}
|