mirror of
https://github.com/CommunityOx/ox_lib.git
synced 2026-08-17 23:16:03 +01:00
11 lines
341 B
TypeScript
11 lines
341 B
TypeScript
|
|
import { Title } from '@mantine/core';
|
||
|
|
import { Components } from 'react-markdown';
|
||
|
|
|
||
|
|
const MarkdownComponents: Components = {
|
||
|
|
h1: ({ node, ...props }) => <Title {...props} />,
|
||
|
|
h2: ({ node, ...props }) => <Title order={2} {...props} />,
|
||
|
|
h3: ({ node, ...props }) => <Title order={3} {...props} />,
|
||
|
|
};
|
||
|
|
|
||
|
|
export default MarkdownComponents;
|