Gedcom Publisher File

It sounds like you're looking to related to a GEDCOM publisher — likely in a genealogy application, family tree tool, or heritage platform.

lines.append("0 TRLR") return "\n".join(lines) If your feature is a “Publish GEDCOM” button + modal : gedcom publisher

const GEDCOMPublisher = ({ treeId }) => { const [includePrivate, setIncludePrivate] = useState(false); const [generations, setGenerations] = useState(5); const [isExporting, setIsExporting] = useState(false); const handleExport = async () => { setIsExporting(true); const blob = await api.exportGEDCOM(treeId, { includePrivate, generations }); const url = URL.createObjectURL(blob); const a = document.createElement("a"); a.href = url; a.download = "family_tree.ged"; a.click(); setIsExporting(false); }; It sounds like you're looking to related to

Ova veb aplikacija koristi kolačiće kako bi vam obezbedili najbolju moguću uslugu. Dodatne informacije možete naći na stranici Politika kolačića.

Prihvati