Skip to content

Commit

Permalink
*
Browse files Browse the repository at this point in the history
  • Loading branch information
imteekay committed Jul 20, 2024
1 parent 952b62e commit 5e566bc
Show file tree
Hide file tree
Showing 13 changed files with 913 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Base/components/MDX/MDX.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import { PostAndDate } from 'Base/components/PostAndDate';
import { SideBySideImages } from 'Base/components/SideBySideImages';
import { SideBySideVideos } from 'Base/components/SideBySideVideos';
import { SmoothRender } from 'Base/components/SmoothRender';
import { Venn } from 'Base/components/Venn';

export type Content = MDXRemoteSerializeResult<
Record<string, unknown>,
Expand All @@ -31,6 +32,7 @@ const components = {
SideBySideVideos,
InlineMath,
BlockMath,
Venn,
};

export const MDX = ({ content }: MDXPropTypes) => (
Expand Down
5 changes: 5 additions & 0 deletions Base/components/Venn/index.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
export const Venn = () => (
<div style={{ 'text-align': 'center' }}>
Event A<span style={{ 'font-size': '80px' }}>&#9901;</span>Event B
</div>
);
Loading

0 comments on commit 5e566bc

Please sign in to comment.