quick-ui-design
Version:
A Quick UI library for user interface design with React fast and easy.
10 lines (9 loc) • 323 B
TypeScript
import { ThemeConfig } from 'antd';
import React from 'react';
import { TComponentProps } from './App/components/Types';
export interface IQuickUI {
components: TComponentProps[];
theme?: ThemeConfig;
}
declare const QuickUI: ({ components, theme }: IQuickUI) => React.JSX.Element;
export default QuickUI;