mirror of
https://github.com/0xShay/ticketchain.git
synced 2026-01-11 21:23:24 +00:00
Resolving Conflict
This commit is contained in:
30
components/scripts/MetaMask.tsx
Normal file
30
components/scripts/MetaMask.tsx
Normal file
@@ -0,0 +1,30 @@
|
||||
'use client';
|
||||
|
||||
import React, { useEffect } from 'react';
|
||||
|
||||
const MetaMask = () => {
|
||||
const isMetaMaskInstalled = () =>
|
||||
typeof (window as { ethereum?: unknown }).ethereum !== 'undefined';
|
||||
|
||||
useEffect(() => {
|
||||
console.log('Print something');
|
||||
}, []);
|
||||
|
||||
// TODO FIX! This is not working :(
|
||||
const metaMaskInstalled = isMetaMaskInstalled();
|
||||
//console.log(metaMaskInstalled);
|
||||
|
||||
return (
|
||||
<div className="text-center p-4">
|
||||
{metaMaskInstalled ? (
|
||||
<button className="bg-blue-500 text-white px-4 py-2 rounded">
|
||||
Connect Wallet
|
||||
</button>
|
||||
) : (
|
||||
<p>MetaMask not detected</p>
|
||||
)}
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default MetaMask;
|
||||
16
components/scripts/Test.tsx
Normal file
16
components/scripts/Test.tsx
Normal file
@@ -0,0 +1,16 @@
|
||||
'use client';
|
||||
import React, { useEffect } from 'react';
|
||||
|
||||
const Test = () => {
|
||||
useEffect(() => {
|
||||
console.log('Print some shit');
|
||||
}, []);
|
||||
|
||||
return (
|
||||
<div>
|
||||
<p>Hellao!</p>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default Test;
|
||||
Reference in New Issue
Block a user