mirror of
https://github.com/ManInDark/HabitTrove.git
synced 2026-01-21 06:34:30 +01:00
use linkify to automatically convert links to href (#15)
This commit is contained in:
5
components/linkify.tsx
Normal file
5
components/linkify.tsx
Normal file
@@ -0,0 +1,5 @@
|
||||
import Linkify0 from "linkify-react";
|
||||
|
||||
export default function Linkify({ children }: { children: React.ReactNode }) {
|
||||
return <Linkify0 options={{ className: "underline" }}>{children}</Linkify0>;
|
||||
}
|
||||
Reference in New Issue
Block a user