7 lines
346 B
TypeScript
7 lines
346 B
TypeScript
import { EntityDict } from "../../oak-app-domain";
|
|
import { RowWithActions, WebComponentProps } from "oak-frontend-base";
|
|
import React from 'react';
|
|
export default function render(props: WebComponentProps<EntityDict, 'offlineAccount', false, {
|
|
offlineAccount: RowWithActions<EntityDict, 'offlineAccount'>;
|
|
}>): React.JSX.Element | undefined;
|