소스 검색

add checkbox in comment-form

yusuketk 8 년 전
부모
커밋
edefaefb64
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      resource/js/components/PageComment/CommentForm.js

+ 4 - 0
resource/js/components/PageComment/CommentForm.js

@@ -43,6 +43,10 @@ export default class CommentForm extends React.Component {
             placeholder="Write comments here..."
             onChange={this.handleChange}
           />
+          <div className="form-check">
+          <input type="checkbox" className="form-check-input" id="checkbox-markdown"></input>
+            <label className="form-check-label" htmlFor="checkbox-markdown">Markdown</label>
+          </div>
 
         </div>
       </div>