golden hour
/home/phakp/public_html/wp/wp-content/themes/neve/dashboard/src/Components/Content
⬆️ Go Up
Upload
File/Folder
Size
Actions
Changelog.js
2.16 KB
Del
OK
FreePro.js
829 B
Del
OK
Help.js
3.19 KB
Del
OK
Plugins.js
504 B
Del
OK
Pro.js
458 B
Del
OK
Start.js
2.07 KB
Del
OK
StarterSites.js
777 B
Del
OK
Edit: Pro.js
/* global neveDash */ import ModuleCard from '../ModuleCard'; const Pro = () => { const {modules} = neveDash; if (neveDash.hasOldPro) { return ( <div className="col"> <div className="card"> <h2>{neveDash.strings.updateOldPro}</h2> </div> </div> ); } return ( <div className="col"> { Object.keys(modules).map((id) => { return ( <ModuleCard slug={id}/> ); }) } </div> ); }; export default Pro;
Save