Files
weave-scope/client/app/scripts/components/overlay.js
Filip Barl eb64d3f09b Make API calls with time travel timestamp (#2600)
* Node details fetching reports at proper timestamp.

* Corrected all the relevant timestamps in the UI.

* Renamed some state variables.

* Time travel works for topologies list.

* Added a whole screen overlay for time travel.

* Polished the backend.

* Make time travel work also with the Resource View.

* Fixed the jest tests.

* Fixed the empty view message for resource view.

* Some naming polishing.

* Addressed the comments.
2017-06-20 12:31:22 +02:00

12 lines
257 B
JavaScript

import React from 'react';
import classNames from 'classnames';
export default class Overlay extends React.Component {
render() {
const className = classNames('overlay', { faded: this.props.faded });
return <div className={className} />;
}
}