mirror of
https://github.com/portainer/portainer.git
synced 2025-07-28 17:59:45 +02:00
10 lines
209 B
TypeScript
10 lines
209 B
TypeScript
|
import { TextTip } from '@@/Tip/TextTip';
|
||
|
|
||
|
export function TimeTip() {
|
||
|
return (
|
||
|
<TextTip color="blue">
|
||
|
Time should be set according to the chosen environments' timezone.
|
||
|
</TextTip>
|
||
|
);
|
||
|
}
|