mirror of
https://github.com/ManInDark/HabitTrove.git
synced 2026-01-21 06:34:30 +01:00
6 lines
199 B
TypeScript
6 lines
199 B
TypeScript
import Linkify0 from "linkify-react";
|
|
|
|
export default function Linkify({ children }: { children: React.ReactNode }) {
|
|
return <Linkify0 options={{ className: "underline" }}>{children}</Linkify0>;
|
|
}
|