File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -6,7 +6,9 @@ import { FilePath, joinSegments } from "../util/path"
66import ArticleTitle from "./ArticleTitle"
77import ContentMeta from "./ContentMeta"
88import TagList from "./TagList"
9+ import EmailSubscribe from "./EmailSubscribe"
910import PageTitle from "./PageTitle"
11+ import Graph from "./Graph"
1012// @ts -ignore
1113import script from "./scripts/annotationViewer/main.inline"
1214import style from "./styles/annotationViewer.scss"
@@ -143,6 +145,8 @@ export default ((userOpts?: Partial<AnnotationViewerOptions>) => {
143145 const Title = ArticleTitle ( )
144146 const Meta = ContentMeta ( )
145147 const Tags = TagList ( )
148+ // const PostGraph = Graph()
149+ const Subscribe = EmailSubscribe ( )
146150
147151 return (
148152 < div
@@ -194,6 +198,7 @@ export default ((userOpts?: Partial<AnnotationViewerOptions>) => {
194198 < Title { ...componentProps } />
195199 < Meta { ...componentProps } />
196200 < Tags { ...componentProps } />
201+ < Subscribe { ...componentProps } />
197202 </ div >
198203
199204 < article class = "annotation-list" role = "main" aria-label = "Annotations" >
You can’t perform that action at this time.
0 commit comments