MCPcopy Create free account
hub / github.com/TanStack/devtools / Mounted

Function Mounted

examples/react/basic/src/index.tsx:151–164  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

149 console.log('Received test event:', event)
150})
151
152function Mounted() {
153 const c = useContext(Context)
154 console.log(c)
155 return (
156 <p
157 onClick={() => {
158 c.setCount(c.count + 1)
159 }}
160 >
161 {c.count}
162 <hr />
163 </p>
164 )
165}
166
167function App() {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected