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
/
index.d.ts
9 lines
(8 loc)
•
248 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
FC
}
from
'react'
;
import
{
IQuickUI
}
from
'..'
;
import
{
TComponentProps
}
from
'./components/Types'
;
export
interface
IApp
extends
IQuickUI
{
components
:
TComponentProps
[]; }
declare
const
App
:
FC
<
IApp
>;
export
default
App
;