use jotai for all states (#19)

This commit is contained in:
Doh
2025-01-04 11:20:36 -05:00
committed by GitHub
parent 306242f2ec
commit ad05a46206
18 changed files with 212 additions and 243 deletions

View File

@@ -1,5 +1,5 @@
import Linkify0 from "linkify-react";
export default function Linkify({ children }: { children: React.ReactNode }) {
return <Linkify0 options={{ className: "underline" }}>{children}</Linkify0>;
return <Linkify0 options={{ className: "underline", target: "_blank" }}>{children}</Linkify0>;
}