UNPKG
@aioha/react-ui
Version:
latest (1.8.2)
1.8.2
1.8.0
1.7.0
1.6.1
1.6.0
1.4.6
1.4.5
1.4.4
1.4.3
1.4.1
1.4.0
1.0.0
0.1.0
Ready-made React modal for Aioha
aioha.dev
@aioha/react-ui
/
dist
/
components
/
login
/
UsernameInput.d.ts
8 lines
(7 loc)
•
249 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
React
from
'react'
;
interface
UsernameInputProps
{
onPrevious
:
() =>
any
;
onNext
:
(
username
:
string
) =>
Promise
<
any
>; }
export
declare
const
UsernameInput
:
(
{ onPrevious, onNext }:
UsernameInputProps
) =>
React
.
JSX
.
Element
;
export
{};