8 lines
312 B
TypeScript
8 lines
312 B
TypeScript
import { WebComponentProps } from 'oak-frontend-base';
|
|
import { EntityDict } from '../../oak-app-domain';
|
|
export default function render(props: WebComponentProps<EntityDict, 'mobile', true, {
|
|
showBack: boolean;
|
|
userId: string;
|
|
currentUserId: string;
|
|
}, {}>): import("react/jsx-runtime").JSX.Element;
|