mirror of
https://github.com/amitwh/markdown-converter.git
synced 2026-08-03 02:11:07 +05:30
feat(renderer): mount ModalLayer + first-launch welcome trigger
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
import { useEffect } from 'react';
|
||||
import { useAppStore } from '@/stores/app-store';
|
||||
import { useSettingsStore } from '@/stores/settings-store';
|
||||
|
||||
/**
|
||||
* On first mount, if the user hasn't dismissed the welcome dialog, open it.
|
||||
* Call once at the top of App.tsx.
|
||||
*/
|
||||
export function useWelcomeTrigger() {
|
||||
useEffect(() => {
|
||||
if (!useSettingsStore.getState().welcomeDismissed) {
|
||||
useAppStore.getState().openModal('welcome');
|
||||
}
|
||||
}, []);
|
||||
}
|
||||
Reference in New Issue
Block a user