File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 11import { createRoot } from 'react-dom/client'
22import Devtools from './setup'
33import { queryPlugin } from './plugin'
4+
45setTimeout ( ( ) => {
56 queryPlugin . emit ( 'test' , {
67 title : 'Test Event' ,
@@ -12,10 +13,11 @@ setTimeout(() => {
1213queryPlugin . on ( 'test' , ( event ) => {
1314 console . log ( 'Received test event:' , event )
1415} )
16+
1517function App ( ) {
1618 return (
1719 < div >
18- < h1 > TanStack Devtools Basic Example</ h1 >
20+ < h1 > TanStack Devtools React Basic Example</ h1 >
1921 < Devtools />
2022 </ div >
2123 )
Original file line number Diff line number Diff line change 11import { render } from 'solid-js/web'
22import Devtools from './setup'
3+
34function App ( ) {
45 return (
56 < div >
6- < h1 > TanStack Devtools Basic Example</ h1 >
7+ < h1 > TanStack Devtools Solid Basic Example</ h1 >
78 < Devtools />
89 </ div >
910 )
You can’t perform that action at this time.
0 commit comments