feat(react/settings): port shortcuts

This commit is contained in:
Elian Doran
2025-08-16 00:08:51 +03:00
parent 3e00e490cf
commit 7b83b20339
5 changed files with 148 additions and 175 deletions

View File

@@ -1,5 +1,5 @@
import { ComponentChildren } from "preact";
export default function FormText({ children }: { children: ComponentChildren }) {
return <p className="form-text">{children}</p>
return <p className="form-text use-tn-links">{children}</p>
}