9 lines
237 B
TypeScript
9 lines
237 B
TypeScript
|
import { JSX, ClassAttributes, HTMLAttributes } from "react";
|
||
|
|
||
|
export const mdxComponent = {
|
||
|
h1: (props: any) => (
|
||
|
<h2 {...props} className="large-text font-bold text-2xl">
|
||
|
{props.children}
|
||
|
</h2>
|
||
|
),
|
||
|
}
|