Files
Trilium/apps/client/src/widgets/react/FormText.tsx

5 lines
192 B
TypeScript
Raw Normal View History

2025-08-14 21:31:09 +03:00
import { ComponentChildren } from "preact";
export default function FormText({ children }: { children: ComponentChildren }) {
2025-08-16 00:08:51 +03:00
return <p className="form-text use-tn-links">{children}</p>
2025-08-14 21:31:09 +03:00
}