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