Skip to content

Commit ff1a01f

Browse files
committed
docs(mdx-components): improve type
1 parent 587a419 commit ff1a01f

File tree

1 file changed

+1
-2
lines changed
  • apps/website/src/components/mdx-components

1 file changed

+1
-2
lines changed

apps/website/src/components/mdx-components/index.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ import { Note } from '../note/note';
1010
import { Showcase } from '../showcase/showcase';
1111
import { StatusBanner } from '../status-banner/status-banner';
1212

13-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
14-
export const components: Record<string, any> = {
13+
export const components: Record<string, Component> = {
1514
p: component$<PropsOf<'p'>>(({ ...props }) => {
1615
return (
1716
<p {...props} class={[cn('mb-6 last:mb-0', props.class)]}>

0 commit comments

Comments
 (0)