reactのinput読み取り専用プロパティ


正しい2つの書き方:
一、HTML中
                             this.getInput("1")}
                            value={startDate}
                            readOnly
                            />

二、CSS中
 .sendpayApproval .table .table-row2 .time .lg-input-o[readonly] {
     cursor: pointer;
 }

間違った書き方:
readonly
readonly=”readonly”