mirror of https://github.com/portainer/portainer
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>
|
||
|
);
|
||
|
}
|