diff --git a/ts/docx/document/index.ts b/ts/docx/document/index.ts index 227ff7f245..ad5ab4a955 100644 --- a/ts/docx/document/index.ts +++ b/ts/docx/document/index.ts @@ -1,4 +1,5 @@ import {XmlComponent, Attributes} from "../xml-components"; +import {Body} from "./body"; export class Document { private document: Array; @@ -6,7 +7,7 @@ export class Document { constructor() { this.document = new Array(); this.document.push(new Attributes({})); - this. + this.document.push(new Body()); } test() {