import React from "react"; // import { useSetState } from "pluto-hooks"; import useSetState from "../index"; export default () => { const [state, setState] = useSetState({ hello: '', count: 0, }); return (
{JSON.stringify(state, null, 2)}

); };