19 lines
440 B
TypeScript
19 lines
440 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,
|
|
'user',
|
|
false,
|
|
{
|
|
loading: boolean;
|
|
channels: string[];
|
|
oakId: string;
|
|
},
|
|
{
|
|
goToMobile: () => void;
|
|
}
|
|
>
|
|
): React.JSX.Element;
|