/** * * Viewer404 * */ import * as React from 'react'; import logo from './assets/logo.svg'; import './style.css'; interface Props { URL?: string; } const Viewer404: React.SFC = (props) => { return (
Tesselle
{'The data you are trying to access with '} Tesselle {props.URL ? ` does not exist (anymore ?) at the address ${props.URL}.` : ' does not exist (anymore ?).'}
); }; export default Viewer404;