blob: d688ae56beed57fe4e6482b4a1a2d38b1d2ddeb5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import React from 'react';
import "./NoSimulationsAlert.css";
const NoSimulationsAlert = () => (
<div className="no-simulations-alert alert alert-info">
<span className="info-icon fa fa-2x fa-question-circle"/>
<strong>No simulations here yet...</strong> Add some with the 'New Simulation' button!
</div>
);
export default NoSimulationsAlert;
|