CustomizeControls
2 months ago
Steps
2 weeks ago
App.js
2 years ago
CategoryButtons.js
2 weeks ago
CustomTooltip.js
2 years ago
EditorSelector.js
2 years ago
FeaturesList.js
1 year ago
Filters.js
2 weeks ago
Header.js
2 weeks ago
ImportError.js
2 years ago
ImportForm.js
1 year ago
ImportMock.js
2 years ago
ImportProgress.js
1 year ago
Onboarding.js
2 weeks ago
ProgressBar.js
2 years ago
Search.js
2 weeks ago
SitePreview.js
2 years ago
SiteSettings.js
2 months ago
Sites.js
2 weeks ago
StarterSiteCard.js
2 weeks ago
Toast.js
2 weeks ago
WelcomeMock.js
2 years ago
ImportMock.js
121 lines
| 1 | import { Button } from '@wordpress/components'; |
| 2 | |
| 3 | const ImportMock = ( {} ) => ( |
| 4 | <> |
| 5 | <div className="ob-site-settings-container"> |
| 6 | <div className="ob-settings-wrap"> |
| 7 | <div className="ob-settings-top" style={ { gap: 0 } }> |
| 8 | <p |
| 9 | className="top-link is-loading" |
| 10 | style={ { height: 20, marginBottom: 10, width: 50 } } |
| 11 | /> |
| 12 | <span |
| 13 | className="title is-loading" |
| 14 | style={ { height: 35, marginBottom: 20 } } |
| 15 | /> |
| 16 | <p |
| 17 | className="description is-loading" |
| 18 | style={ { height: 20 } } |
| 19 | /> |
| 20 | <p |
| 21 | className="description is-loading" |
| 22 | style={ { height: 20, marginBottom: 20 } } |
| 23 | /> |
| 24 | <div className="ob-ctrl"> |
| 25 | <div className="ob-ctrl-head"> |
| 26 | <span |
| 27 | className="title is-loading" |
| 28 | style={ { height: 35 } } |
| 29 | /> |
| 30 | <span className="revert is-loading"></span> |
| 31 | </div> |
| 32 | <div className="ob-ctrl-wrap"> |
| 33 | <p |
| 34 | className="description is-loading" |
| 35 | style={ { height: 30, marginBottom: 10 } } |
| 36 | /> |
| 37 | <p |
| 38 | className="description is-loading" |
| 39 | style={ { height: 30, marginBottom: 10 } } |
| 40 | /> |
| 41 | <p |
| 42 | className="description is-loading" |
| 43 | style={ { height: 30, marginBottom: 10 } } |
| 44 | /> |
| 45 | </div> |
| 46 | </div> |
| 47 | |
| 48 | <div className="ob-ctrl"> |
| 49 | <div className="ob-ctrl-head"> |
| 50 | <span |
| 51 | className="title is-loading" |
| 52 | style={ { height: 35 } } |
| 53 | /> |
| 54 | <span className="revert is-loading"></span> |
| 55 | </div> |
| 56 | <div className="ob-ctrl-wrap font"> |
| 57 | <p |
| 58 | className="description is-loading" |
| 59 | style={ { height: 30, marginBottom: 10 } } |
| 60 | /> |
| 61 | <p |
| 62 | className="description is-loading" |
| 63 | style={ { |
| 64 | height: 40, |
| 65 | marginBottom: 10, |
| 66 | width: '30%', |
| 67 | } } |
| 68 | /> |
| 69 | <p |
| 70 | className="description is-loading" |
| 71 | style={ { |
| 72 | height: 40, |
| 73 | marginBottom: 10, |
| 74 | width: '30%', |
| 75 | } } |
| 76 | /> |
| 77 | <p |
| 78 | className="description is-loading" |
| 79 | style={ { |
| 80 | height: 40, |
| 81 | marginBottom: 10, |
| 82 | width: '30%', |
| 83 | } } |
| 84 | /> |
| 85 | <p |
| 86 | className="description is-loading" |
| 87 | style={ { |
| 88 | height: 40, |
| 89 | marginBottom: 10, |
| 90 | width: '30%', |
| 91 | } } |
| 92 | /> |
| 93 | <p |
| 94 | className="description is-loading" |
| 95 | style={ { |
| 96 | height: 40, |
| 97 | marginBottom: 10, |
| 98 | width: '30%', |
| 99 | } } |
| 100 | /> |
| 101 | <p |
| 102 | className="description is-loading" |
| 103 | style={ { |
| 104 | height: 40, |
| 105 | marginBottom: 10, |
| 106 | width: '30%', |
| 107 | } } |
| 108 | /> |
| 109 | </div> |
| 110 | </div> |
| 111 | </div> |
| 112 | </div> |
| 113 | </div> |
| 114 | <div className="ob-settings-bottom"> |
| 115 | <Button isPrimary className="import is-loading" /> |
| 116 | </div> |
| 117 | </> |
| 118 | ); |
| 119 | |
| 120 | export default ImportMock; |
| 121 |