9 lines
315 B
TypeScript
9 lines
315 B
TypeScript
import React from 'react';
|
|
import { WebComponentProps } from 'oak-frontend-base';
|
|
import { EntityDict } from '../../../oak-app-domain';
|
|
export default function render(props: WebComponentProps<EntityDict, 'session', false, {
|
|
avatarUrl: string;
|
|
nickname: string;
|
|
name: string;
|
|
}, {}>): React.JSX.Element;
|