Answer the question
In order to leave comments, you need to log in
When should I use React.FC?
I have a component like this
Should I use React.FC ? const Herberito = ( x ) => <div>{x}</div>;
Answer the question
In order to leave comments, you need to log in
Example:
interface Props {
someProp: string;
}
const Herberito: React.FC<Props> = ({ someProp }) => <div>{someProp}</div>;
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question