| 1 |
import { launchStrings } from '@auto-launch/strings'; |
| 2 |
|
| 3 |
export const useNeedsTheme = () => { |
| 4 |
const strings = launchStrings(); |
| 5 |
|
| 6 |
return { |
| 7 |
title: strings.needsThemeTitle, |
| 8 |
body: strings.needsThemeBody, |
| 9 |
action: { |
| 10 |
label: strings.needsThemeAction, |
| 11 |
href: `${window.extSharedData.adminUrl}theme-install.php?theme=extendable`, |
| 12 |
}, |
| 13 |
}; |
| 14 |
}; |
| 15 |
|