mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
24 lines
589 B
TypeScript
24 lines
589 B
TypeScript
/**
|
|
* Component when there is no host results found in a search
|
|
*/
|
|
import React from "react";
|
|
|
|
const baseClass = "empty-users";
|
|
|
|
const EmptyUsers = (): JSX.Element => {
|
|
return (
|
|
<div className={`${baseClass}`}>
|
|
<div className={`${baseClass}__inner`}>
|
|
<div className={`${baseClass}__empty-filter-results`}>
|
|
<h1>No users match the current criteria.</h1>
|
|
<p>
|
|
Expecting to see users? Try again in a few seconds as the system
|
|
catches up.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default EmptyUsers;
|