import { TextTip } from '@@/Tip/TextTip'; interface Props { showSystemResources: boolean; } export function SystemResourceDescription({ showSystemResources }: Props) { return (
{!showSystemResources && ( System resources are hidden, this can be changed in the table settings )}
); }