Skip to content

Commit

Permalink
chore: run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
agoose77 committed Nov 19, 2024
1 parent 26c06b6 commit 196e7ba
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions packages/myst-demo/src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ async function parse(
}

export function MySTRenderer({
id,
id,
value,
column,
fullscreen,
Expand All @@ -240,7 +240,7 @@ export function MySTRenderer({
captureTab,
className,
}: {
id?: string;
id?: string;
value: string;
column?: boolean;
fullscreen?: boolean;
Expand Down Expand Up @@ -506,5 +506,12 @@ export function MySTRenderer({
}

export const MystDemoRenderer: NodeRenderer = ({ node }) => {
return <MySTRenderer id={node.html_id || node.identifier} value={node.value} numbering={node.numbering} className={node.class} />;
return (
<MySTRenderer
id={node.html_id || node.identifier}
value={node.value}
numbering={node.numbering}
className={node.class}
/>
);
};

0 comments on commit 196e7ba

Please sign in to comment.