Open
Description
Thanks for this brilliant source of reference! Really cuts through the noise :-)
What's missing for me, is how to type-hint a functional component that accepts standard JSX attributes?
I tried the following:
import { h, FunctionalComponent } from "preact";
export interface ButtonProps {
title: string;
}
export const Button: FunctionalComponent<ButtonProps> = props => {
let { title, ...rest } = props;
return <button {...rest}>{title}</button>;
};
But I get the following error:
Type '(ButtonProps & ComponentProps<FunctionalComponent<ButtonProps>>) | undefined' has no property 'title' and no string index signature.
Clearly, type-hinting as FunctionalComponent<ButtonProps>
isn't the right way to go about this?
Metadata
Metadata
Assignees
Labels
No labels