mirror of
https://github.com/zadam/trilium.git
synced 2025-10-27 08:16:40 +01:00
5 lines
192 B
TypeScript
5 lines
192 B
TypeScript
import { ComponentChildren } from "preact";
|
|
|
|
export default function FormText({ children }: { children: ComponentChildren }) {
|
|
return <p className="form-text use-tn-links">{children}</p>
|
|
} |