UNPKG
ored
Version:
latest (1.0.7)
1.0.7
1.0.6
1.0.5
An UI design language and React&Taro components implementation
ored
/
src
/
components
/
space
/
index.ts
8 lines
(5 loc)
•
160 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
import
{
FC
}
from
'react'
;
import
{
SpaceProps
}
from
'./types'
;
const
Space
:
FC
<
SpaceProps
> =
() =>
null
;
export
type
{
SpaceProps
};
export
default
Space
;