parent
705f02f7ae
commit
709fb35b03
@ -0,0 +1,21 @@
|
|||||||
|
'use client';
|
||||||
|
|
||||||
|
import { useEffect } from 'react';
|
||||||
|
|
||||||
|
import { useShallow } from 'zustand/react/shallow';
|
||||||
|
|
||||||
|
import { useUserStore } from '@/store';
|
||||||
|
|
||||||
|
export default function APP() {
|
||||||
|
const { getUserInfo } = useUserStore(
|
||||||
|
useShallow((state) => ({
|
||||||
|
getUserInfo: state.getUserInfo,
|
||||||
|
})),
|
||||||
|
);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
getUserInfo();
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
return <div></div>;
|
||||||
|
}
|
Loading…
Reference in new issue