import { useEffect, useState } from 'react'; import { ipc } from '@/lib/ipc'; export function AboutSettings() { const [version, setVersion] = useState('…'); useEffect(() => { ipc.app.getVersion().then((r) => { if (r.ok && typeof r.data === 'string') setVersion(r.data); }); }, []); return (

MarkdownConverter

Version {version}

{ e.preventDefault(); ipc.app.openExternal('https://github.com/amitwh/markdown-converter'); }} > GitHub repository

{ e.preventDefault(); ipc.app.openExternal('https://concreteinfo.co.in'); }} > ConcreteInfo

© ConcreteInfo. Licensed under MIT.

); }