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

5 lines
179 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 }) {
return <p className="form-text">{children}</p>
}