diff options
Diffstat (limited to 'pages/uniorg.tsx')
-rw-r--r-- | pages/uniorg.tsx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/pages/uniorg.tsx b/pages/uniorg.tsx index 65786c9..0c77cdb 100644 --- a/pages/uniorg.tsx +++ b/pages/uniorg.tsx @@ -11,7 +11,7 @@ export interface uniorgProps { orgText: string } -const UniOrg = (props: uniorgProps) => { +export const UniOrg = (props: uniorgProps) => { const { orgText } = props const processor = unified() .use(uniorgParse) @@ -22,4 +22,3 @@ const UniOrg = (props: uniorgProps) => { return <div>processor.processSync(orgText)</div> } -export default UniOrg |