This commit is contained in:
chashaobao
2025-10-15 20:44:20 +08:00
parent 7ba04b27ff
commit 3d2b121b92
23 changed files with 724 additions and 65 deletions

View File

@ -0,0 +1,10 @@
import { useSelector } from 'react-redux';
import { selectServiceUrls } from '@/store/selector';
function useServiceUrls() {
const data = useSelector(selectServiceUrls);
return data || [];
}
export default useServiceUrls;