UNPKG
react-better-slot
Version:
latest (0.0.4)
0.0.4
0.0.3
0.0.2
0.0.1
用React实现的Vue中Slot的功能
github.com/ghostjzf/react-better-slot
ghostjzf/react-better-slot
react-better-slot
/
es
/
Slot.d.ts
7 lines
(6 loc)
•
123 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
{
FC
}
from
'react'
;
declare
const
Slot
:
FC
<{
name
?:
string
;
children
?:
any
; }>;
export
default
Slot
;