import { atom } from 'nanostores' import { ReactElement } from 'react' import { useStore } from '@nanostores/react' const x = { name: 'm', id: '1' } export const $profileBuilder = atom(x) export function Navbar(): ReactElement { const p = useStore($profileBuilder, { keys: ['name'] }) return <pre> {JSON.stringify(p, null, 2)}</pre> }
computed
?