mirror of
https://github.com/zadam/trilium.git
synced 2025-11-12 08:15:52 +01:00
5 lines
179 B
TypeScript
5 lines
179 B
TypeScript
|
|
import { ComponentChildren } from "preact";
|
||
|
|
|
||
|
|
export default function FormText({ children }: { children: ComponentChildren }) {
|
||
|
|
return <p className="form-text">{children}</p>
|
||
|
|
}
|