template.js
31 lines
| 1 | const { FormToggle } = wp.components; |
| 2 | export default () => { |
| 3 | return ( |
| 4 | <> |
| 5 | <span className="sfwd_option_label"> |
| 6 | <a className="sfwd_help_text_link" title="Click for Help!"> |
| 7 | <img |
| 8 | alt="" |
| 9 | src="//192.168.4.23:3004/wp-content/plugins/sfwd-lms/assets/images/question.png" |
| 10 | /> |
| 11 | <label |
| 12 | for="learndash-lesson-display-content-settings_lesson_use_presto_video" |
| 13 | className="sfwd_label" |
| 14 | > |
| 15 | Use Presto Video |
| 16 | </label> |
| 17 | </a> |
| 18 | <div |
| 19 | id="learndash-lesson-display-content-settings_lesson_use_presto_video_tip" |
| 20 | className="sfwd_help_text_div" |
| 21 | > |
| 22 | <label className="sfwd_help_text"> |
| 23 | Use the presto video in your post content for video progression. |
| 24 | </label> |
| 25 | </div> |
| 26 | </span> |
| 27 | <FormToggle checked={true} onChange={() => {}} /> |
| 28 | </> |
| 29 | ); |
| 30 | }; |
| 31 |