7 lines
304 B
TypeScript
7 lines
304 B
TypeScript
import React from 'react';
|
|
import { EntityDict } from "../../../oak-app-domain";
|
|
import { WebComponentProps } from "oak-frontend-base";
|
|
export default function render(props: WebComponentProps<EntityDict, 'withdraw', false, {
|
|
withdraw: EntityDict['withdraw']['Schema'];
|
|
}>): React.JSX.Element | null;
|