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); };
A GEDCOM publisher feature usually allows users to: gedcom publisher
: Choose which individuals to include, select your preferred theme, and customize the title page. const handleExport = async () => { setIsExporting(true);
The small town of Ashwood had a rich history, with many families having lived there for generations. The Ashwood Genealogical Society, a group of dedicated researchers and historians, had spent years collecting and documenting the town's genealogical records. They had amassed a vast collection of family trees, birth and death certificates, marriage records, and other historical documents. const handleExport = async () =>
If you can clarify: