import React from 'react'; interface INotFoundProps { type: string; entityId: string; } export function NotFound(props: INotFoundProps) { return (

{props.type} Not Found

Please check your URL - we can't find any data for {props.entityId}.

); }