portfolio/mdx-components.tsx

18 lines
750 B
TypeScript
Raw Permalink Normal View History

2024-09-18 16:36:21 +00:00
import type {MDXComponents} from 'mdx/types'
2024-09-19 08:16:45 +00:00
import {Heading} from './components/ui/Heading'
2023-07-29 22:40:36 +00:00
// This file allows you to provide custom React components
// to be used in MDX files. You can import and use any
// React component you want, including components from
// other libraries.
// This file is required to use MDX in `app` directory.
export function useMDXComponents(components: MDXComponents): MDXComponents {
return {
2024-09-19 08:16:45 +00:00
h2: ({children}) => <Heading as='h2'>{children}</Heading>,
h3: ({children}) => <Heading as='h3'>{children}</Heading>,
2023-07-29 22:40:36 +00:00
// Allows customizing built-in components, e.g. to add styling.
// h1: ({ children }) => <h1 style={{ fontSize: "100px" }}>{children}</h1>,
...components,
}
}