@tomino/dynamic-form-semantic-ui
Version:
Semantic UI form renderer based on dynamic form generation
12 lines (11 loc) • 481 B
TypeScript
import React from 'react';
import { FormComponentProps } from '@tomino/dynamic-form';
import { RouteProps } from '../../react-router/react_router_view';
export declare type PrivateRouteProps = RouteProps & {
disable: boolean;
};
export declare const LoggedInView: (props: FormComponentProps<PrivateRouteProps, any, any> & {
result: any;
routerProps: any;
}) => JSX.Element;
export declare const PrivateReactRouterRoute: React.FC<FormComponentProps<PrivateRouteProps>>;