mirror of
https://github.com/portainer/portainer.git
synced 2025-07-19 13:29:41 +02:00
17 lines
421 B
TypeScript
17 lines
421 B
TypeScript
import { TextTip } from '@@/Tip/TextTip';
|
|
|
|
interface Props {
|
|
showSystemResources: boolean;
|
|
}
|
|
|
|
export function SystemResourceDescription({ showSystemResources }: Props) {
|
|
return (
|
|
<div className="w-full">
|
|
{!showSystemResources && (
|
|
<TextTip color="blue" className="!mb-0">
|
|
System resources are hidden, this can be changed in the table settings
|
|
</TextTip>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|