module Link = struct let[@react.component] make ~children ~href ?(className = "") = let base_class = "hover:text-gray-300 transition-colors" in let clas = Printf.sprintf "%s %s" base_class className in children ;; end let rs = React.string let[@react.component] make () =
(rs "SEARCH") (rs "LOGIN")
;;