UNPKG
quick-ui-design
Version:
latest (0.0.1)
0.0.1
A Quick UI library for user interface design with React fast and easy.
nazmulhaque.netlify.app
quick-ui-design
/
dist
/
App
/
components
/
index.d.ts
8 lines
(7 loc)
•
240 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
FC
}
from
'react'
;
import
{
TComponentProps
}
from
'./Types'
;
export
interface
IRenderComponents
{
components
:
TComponentProps
[]; }
declare
const
RenderComponents
:
FC
<
IRenderComponents
>;
export
default
RenderComponents
;