remix-project mirror
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
remix-project/apps/walletconnect/src/app/app.tsx

18 lines
432 B

import '../css/app.css'
import '@fortawesome/fontawesome-free/css/all.css'
import {WalletConnectRemixClient} from '../services/WalletConnectRemixClient'
import {WalletConnectUI} from './walletConnectUI'
const remix = new WalletConnectRemixClient()
remix.initClient()
function App() {
return (
<div className="App">
<h4 className="mt-1">WalletConnect</h4>
<WalletConnectUI />
</div>
)
}
export default App