1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-12-02 05:57:29 +01:00

Changing label to list components

This commit is contained in:
Jamie Hewitt 2022-04-13 14:41:20 +03:00
parent 931a5e4e9f
commit dfdaaee7d8

View File

@ -20,8 +20,8 @@ export default function NetworkOptions({
} }
return ( return (
<div key={chainId}> <ul key={chainId}>
<label className={styles.radioLabel} htmlFor={`opt-${chainId}`}> <li className={styles.radioLabel}>
<Button <Button
style="text" style="text"
className={styles.button} className={styles.button}
@ -29,7 +29,7 @@ export default function NetworkOptions({
> >
<NetworkName key={chainId} networkId={chainId} /> <NetworkName key={chainId} networkId={chainId} />
</Button> </Button>
</label> </li>
</div> </ul>
) )
} }