fix: add forwardRef in overrideComponents

This commit is contained in:
p-sw 2024-06-02 08:35:03 +09:00
parent 663f1b088e
commit af147ab0f3

View File

@ -27,20 +27,24 @@ import ComponentsCheckbox, {
import ComponentsDialog, { import ComponentsDialog, {
tableOfContents as componentsDialogToc, tableOfContents as componentsDialogToc,
} from "./docs/components/Dialog.mdx"; } from "./docs/components/Dialog.mdx";
import { forwardRef } from "react";
const overrideComponents = { const overrideComponents = {
pre: (props: any) => <pre {...props} className={`${props.className} hljs`} />, pre: forwardRef<HTMLPreElement, any>((props: any, ref) => (
code: (props: any) => ( <pre ref={ref} {...props} className={`${props.className} hljs`} />
)),
code: forwardRef<HTMLElement, any>((props: any, ref) => (
<code <code
ref={ref}
{...props} {...props}
className={`${props.className} rounded-md bg-neutral-800 text-orange-500 font-light p-1 before:content-none after:content-none`} className={`${props.className} rounded-md bg-neutral-800 text-orange-500 font-light p-1 before:content-none after:content-none`}
/> />
), )),
table: (props: any) => ( table: forwardRef<HTMLTableElement, any>((props: any, ref) => (
<div className="overflow-auto"> <div className="overflow-auto">
<table {...props} className={`${props.className}`} /> <table ref={ref} {...props} className={`${props.className}`} />
</div> </div>
), )),
}; };
const router = createBrowserRouter( const router = createBrowserRouter(