UNPKG
frmx
Version:
alpha (5.0.0-alpha.4)
beta (5.0.0-beta.0)
latest (5.5.9)
5.5.9
5.5.8
5.5.7
5.5.6
5.5.5
5.5.4
5.5.3
5.5.2
5.5.1
5.5.0
5.4.1
5.4.0
5.3.2
5.3.1
5.2.7
5.2.6
5.2.4
5.1.22
5.1.21
5.1.20
5.1.19
5.1.17
5.1.16
5.1.15
5.1.14
5.1.13
5.1.11
5.1.10
5.1.9
5.1.8
5.1.7
5.1.6
5.1.5
5.1.4
5.1.3
5.1.1
5.1.0
5.0.2
5.0.1
5.0.0
5.0.0-beta.0
5.0.0-alpha.6
5.0.0-alpha.5
5.0.0-alpha.4
5.0.0-alpha.3
5.0.0-alpha.2
5.0.0-alpha.1
5.0.0-alpha.0
4.2.1
4.2.0
4.1.6
4.1.5
4.1.4
4.1.3
4.1.2
4.1.1
4.1.0
4.0.14
4.0.13
4.0.12
4.0.10
4.0.9
4.0.8
4.0.7
4.0.6
4.0.5
4.0.4
4.0.3
4.0.2
4.0.1
4.0.0
3.8.12
3.8.11
3.8.10
3.8.9
3.8.8
3.8.7
3.8.6
3.8.5
3.8.4
3.8.3
3.8.2
3.8.1
3.8.0
3.7.13
3.7.12
3.7.11
3.7.10
3.7.9
3.7.8
3.7.7
3.7.6
3.7.5
3.7.4
3.7.3
3.7.2
3.7.1
3.7.0
3.6.2
3.6.1
3.6.0
3.5.9
3.5.8
3.5.7
3.5.6
3.5.5
3.5.4
3.5.3
3.5.2
3.5.1
3.5.0
3.4.8
3.4.7
3.4.6
3.4.5
3.4.4
3.4.3
3.4.2
3.4.1
3.4.0
3.3.1
3.3.0
3.2.2
3.2.1
3.1.1
3.1.0
3.0.3
3.0.2
3.0.1
3.0.0
2.0.6
2.0.5
2.0.4
2.0.3
2.0.2
2.0.1
2.0.0
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
Simple, Performant, Lightweight React Forms
frmx-docs.vercel.app
flowsn4ke/frmx
frmx
/
dist
/
esm
/
types
/
Reset.d.ts
9 lines
(8 loc)
•
285 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
React
from
'react'
;
interface
ResetInterface
{
children
:
React
.
ReactElement
; onClick?():
any
;
rest
?:
any
; }
export
default
function
Reset
(
{ children, onClick, ...rest }:
ResetInterface
):
React
.
ReactElement
<
any
,
string
|
React
.
JSXElementConstructor
<
any
>>;
export
{};