I am using this extension to generate code snippets when working with react.
In documentation it says when used fc abbreviation it should work as below.
fc - Function Component
const | = props => {
return ( | );
};
export default |;
But, fc is not there only ffc is there which gives below snippet.
function | () {
return ( | );
}
export default |;