optimizing.js
9 lines
| 1 | const { __ } = wp.i18n; |
| 2 | |
| 3 | export const Optimizing = ({title}) => { |
| 4 | let desc; |
| 5 | desc = 'Reload in 2 minutes to see<br> the new score'; |
| 6 | return <span className="two-page-speed two-optimizing two-loading-bg">{__(title, 'tenweb-speed-optimizer')} |
| 7 | <p className="two-description" dangerouslySetInnerHTML={{__html: desc}} /> |
| 8 | </span>; |
| 9 | } |