UNPKG
sailboat-design
Version:
latest (0.1.7)
0.1.7
0.1.5
0.1.4
0.1.2
0.1.0
A simple sailboat simulator
github.com/lzw10168/sailboat
lzw10168/sailboat
sailboat-design
/
dist
/
components
/
Form
/
index.d.ts
8 lines
(7 loc)
•
229 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
FC
}
from
'react'
;
import
Form
, {
FormProps
}
from
'./form'
;
import
{
FormItemProps
}
from
'./formItem'
;
export
declare
type
IFormComponent
=
FC
<
FormProps
> & {
Item
:
FC
<
FormItemProps
>; };
export
default
Form
;