Skip to content

Type-hinting functional components with JSX attributes? #1

Open
@mindplay-dk

Description

@mindplay-dk

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

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions