mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-03-14 14:21:36 +01:00
Add .oxfmtignore to skip generated bindings and wasm-pack output. Add npm format script, update DEVELOPMENT.md for Vite+ toolchain, and format all non-generated files with oxfmt. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
14 lines
373 B
TypeScript
14 lines
373 B
TypeScript
import { VStack } from "./core/Stacks";
|
|
|
|
export function EncryptionHelp() {
|
|
return (
|
|
<VStack space={3}>
|
|
<p>Encrypt passwords, tokens, and other sensitive info when encryption is enabled.</p>
|
|
<p>
|
|
Encrypted data remains secure when syncing to the filesystem or Git, and when exporting or
|
|
sharing with others.
|
|
</p>
|
|
</VStack>
|
|
);
|
|
}
|