import React from 'react'; import PwdUpdate from 'oak-general-business/es/components/user/password/update'; import { RowWithActions, WebComponentProps } from 'oak-frontend-base'; import { EntityDict } from '@project/oak-app-domain'; export default function Render(props: WebComponentProps) { const { userId, path } = props.data; if (userId && path) { return ( ); } return null; }