diff options
author | tschicke-brown <tyler_schicke@brown.edu> | 2019-06-17 14:05:07 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-17 14:05:07 -0400 |
commit | 62e7e21d6db96a9c62710c2bc6842705b79f5665 (patch) | |
tree | 78beb9e04812294b1c71307b69b2a1d721e9a5fc /src/client/views/nodes/DocumentContentsView.tsx | |
parent | 589d2409cf00c3ff15eddbe88835a63a09785f2c (diff) | |
parent | 37e1c3895af6666bbd4c253fb7af51495ec48706 (diff) |
Merge pull request #160 from browngraphicslab/pdf_impl
PDF stuff!
Diffstat (limited to 'src/client/views/nodes/DocumentContentsView.tsx')
-rw-r--r-- | src/client/views/nodes/DocumentContentsView.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/views/nodes/DocumentContentsView.tsx b/src/client/views/nodes/DocumentContentsView.tsx index 02396c3af..c2caabb92 100644 --- a/src/client/views/nodes/DocumentContentsView.tsx +++ b/src/client/views/nodes/DocumentContentsView.tsx @@ -23,6 +23,7 @@ import { FieldViewProps } from "./FieldView"; import { Without, OmitKeys } from "../../../Utils"; import { Cast, StrCast, NumCast } from "../../../new_fields/Types"; import { List } from "../../../new_fields/List"; +import { PDFBox2 } from "../pdf/PDFBox2"; const JsxParser = require('react-jsx-parser').default; //TODO Why does this need to be imported like this? type BindingProps = Without<FieldViewProps, 'fieldKey'>; |