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