File size: 238 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 |
const useLaunchpadScreen = () => {
// We have this data populated, on window.launchpadOptions, so we should use it.
return {
launchpad_screen: window.launchpadOptions?.launchpadScreenOption,
};
};
export default useLaunchpadScreen;
|