feat(react/settings): port totp settings

This commit is contained in:
Elian Doran
2025-08-19 10:37:14 +03:00
parent 73ff41f2b2
commit cfb3607052
7 changed files with 229 additions and 349 deletions

View File

@@ -1,7 +1,7 @@
import { ComponentChildren } from "preact";
interface AdmonitionProps {
type: "warning";
type: "warning" | "note" | "caution";
children: ComponentChildren;
}