* refactor: 💡 Clean up JSON launch with DICOMWeb server Clean up JSON launch with DICOMWeb server ✅ Closes: #1387 * Remove test file * parse seriesinstanceuids in query * Add default studies * Remove test file * Cleanup retrievedata changes * Set active server
19 lines
452 B
JavaScript
19 lines
452 B
JavaScript
import React from 'react';
|
|
import './NotFound.css';
|
|
import { Link } from 'react-router-dom';
|
|
|
|
export default function NotFound({ message = 'Sorry, this page does not exist.', showGoBackButton = true }) {
|
|
return (
|
|
<div className={'not-found'}>
|
|
<div>
|
|
<h4>{message}</h4>
|
|
{showGoBackButton && (
|
|
<h5>
|
|
<Link to={'/'}>Go back to the Study List</Link>
|
|
</h5>
|
|
)}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|