#
luxiaotao1123
2024-05-11 d18dd311f9b7a7a77a832f57e74434d946f6f0c5
1
2
3
4
5
6
7
8
9
10
11
import { proxy } from 'valtio'
import { useProxy } from 'valtio/utils'
 
const store = proxy(
    {
        text: 'Hello World',
        shelfList: {},
    }
);
 
export const useStore = () => useProxy(store);