-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Description
Hello,
I'm running the plugin on Windows 10 and IntelliJ IDEA Ultimate 2020.2.
When I do alt + enter in the className / functionName it doesn't show the field "PropTypesGenerate ".
Here's the source code:
import React from "react";
import TextField from "@material-ui/core/TextField";
export default function CustomTextField(props) {
const {
value, onChange, error, label, name, helperText
} = props;
return (
<TextField
value={value}
color="secondary"
label={label}
error={error}
helperText={helperText}
name={name}
onChange={(e) => {
onChange(name, e);
}}
fullWidth
/>
);
}Do you have any idea if I'm doing something wrong?
Thanks in advance
Metadata
Metadata
Assignees
Labels
No labels
