diff --git a/frontend/src/App.tsx b/frontend/src/App.tsx index d738a4c..4a27ad9 100644 --- a/frontend/src/App.tsx +++ b/frontend/src/App.tsx @@ -42,7 +42,7 @@ const HELLO = gql` function App() { // const {error, loading, data} = useQuery(ACCOUNTS) const {error, loading, data} = useSubscription(HELLO) - + console.log(data) return ( <>

Accounts

@@ -56,7 +56,7 @@ function App() { // // ) // ) -

data

+

{`${data.hello}`}

} );