Skip to content

Commit

Permalink
Implements displaying contract (#34)
Browse files Browse the repository at this point in the history
Co-authored-by: Yauheni <[email protected]>
  • Loading branch information
YauheniDraichykau and Yauheni authored Dec 4, 2023
1 parent 72984a0 commit 81fe1b1
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions frontend/src/app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,20 @@ import { ApiLoader } from './components/loaders/api-loader'
import { Footer, Header } from '@/components/layout'
import { withProviders } from '@/app/hocs'
import { useAccountAvailableBalanceSync } from './app/hooks/use-account-available-balance'
import { useEffect } from 'react'
import { ENV } from './app/consts'

const Component = () => {
const { isApiReady } = useApi()
const { isAccountReady } = useAccount()

useAccountAvailableBalanceSync()

useEffect(() => {
console.log('Node')
console.log(ENV.NODE)
}, [])

return (
<div className="flex flex-col min-h-screen">
<Header />
Expand Down

0 comments on commit 81fe1b1

Please sign in to comment.