mirror of
https://github.com/status-im/nft-faucet.git
synced 2025-02-24 12:38:30 +00:00
12 lines
262 B
C#
12 lines
262 B
C#
|
using NftFaucet.Components;
|
||
|
|
||
|
namespace NftFaucet.Pages;
|
||
|
|
||
|
public class IndexComponent : BasicComponent
|
||
|
{
|
||
|
protected override async Task OnInitializedAsync()
|
||
|
{
|
||
|
UriHelper.NavigateTo(await Metamask.IsReady() ? "/step1" : "/connect-metamask");
|
||
|
}
|
||
|
}
|