Skip to content

Commit

Permalink
Support 3Di sequence
Browse files Browse the repository at this point in the history
  • Loading branch information
liambai committed Dec 26, 2024
1 parent c743be9 commit 57da04c
Show file tree
Hide file tree
Showing 5 changed files with 278 additions and 8 deletions.
1 change: 1 addition & 0 deletions viz/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slider": "^1.2.1",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.2",
"@radix-ui/react-toggle": "^1.1.0",
"@radix-ui/react-toggle-group": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.3",
Expand Down
168 changes: 168 additions & 0 deletions viz/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions viz/src/components/Markdown.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ interface MarkdownProps {

const Markdown: FC<MarkdownProps> = ({ children }) => {
return (
<div className="markdown-content">
<span className="markdown-content">
<MarkdownToJSX
options={{
overrides: {
Expand All @@ -28,7 +28,7 @@ const Markdown: FC<MarkdownProps> = ({ children }) => {
>
{children}
</MarkdownToJSX>
</div>
</span>
);
};

Expand Down
Loading

0 comments on commit 57da04c

Please sign in to comment.