Files
yaak/src-web/hooks/useOsInfo.ts
2024-08-09 15:35:21 -07:00

6 lines
108 B
TypeScript

import { type } from '@tauri-apps/plugin-os';
export function useOsInfo() {
return { osType: type() };
}