react-antd-admin-panel
Version:
Easy prototyping admin panel using React and Antd
14 lines (13 loc) • 361 B
TypeScript
import React from "react";
import { Main, Section as SectionModel } from "../typescript";
import { FormInstance } from "antd/lib/form";
declare const Section: (props: {
main: Main;
section: any;
form?: FormInstance;
model?: SectionModel;
parent?: any;
style?: any;
args?: any;
}) => React.JSX.Element | null;
export default Section;