ยฉ 2026 Hedgehog Software, LLC
function App() { const [people, setPeople] = createStore<any[]>([]); createEffect(() => { const ppl = unwrap(people); console.log('store: ', people) console.log('unwrap: ',ppl) console.log('JSON: ', JSON.parse(JSON.stringify(people))); }) return (<></>); }