mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-01-18 15:06:58 +01:00
* Update environment model to get ready for request/folder environments * Folder environments in UI * Folder environments working * Tweaks and fixes * Tweak environment encryption UX * Tweak environment encryption UX * Address comments * Update fn name * Add tsc back to lint rules * Update src-web/components/EnvironmentEditor.tsx * Merge remote-tracking branch 'origin/folder-environments' into folder…
9 lines
243 B
TypeScript
9 lines
243 B
TypeScript
import React from 'react';
|
|
import { IconTooltip } from './core/IconTooltip';
|
|
|
|
export function EnvironmentSharableTooltip() {
|
|
return (
|
|
<IconTooltip content="Sharable environments are included in Directory Sync and data export." />
|
|
);
|
|
}
|