ai-bot/app/_lib/MdxComponent.tsx

9 lines
237 B
TypeScript
Raw Permalink Normal View History

2025-03-03 18:37:04 +08:00
import { JSX, ClassAttributes, HTMLAttributes } from "react";
export const mdxComponent = {
h1: (props: any) => (
<h2 {...props} className="large-text font-bold text-2xl">
{props.children}
</h2>
),
}