11 lines
415 B
TypeScript
11 lines
415 B
TypeScript
import React from 'react';
|
|
import { EntityDict } from "../../../oak-app-domain";
|
|
import { RowWithActions, WebComponentProps } from "oak-frontend-base";
|
|
export default function render(props: WebComponentProps<EntityDict, 'offlineAccount', true, {
|
|
accounts?: (RowWithActions<EntityDict, 'offlineAccount'> & {
|
|
color: string;
|
|
})[];
|
|
systemId: string;
|
|
canCreate?: boolean;
|
|
}>): React.JSX.Element;
|