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.
 
 
 
 
 
 

18 lines
366 B

import './style.scss'
export const TransactionList = () => {
return (
<>
<h1>Transactions</h1>
<div className="transactions">
{[].map((account, i) => {
return (
<div className="column" key={`${account}-txs-${i}`}>
<h3>{account}</h3>
</div>
)
})}
</div>
</>
)
}