diff --git a/src/App.jsx b/src/App.jsx index 14dac86..caf892a 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -1,6 +1,41 @@ import './App.css' import React, { useState } from "react"; +// Reusable input with tooltip component +const InputWithTooltip = ({ type, name, placeholder, value, onChange, required, tooltip, className = "" }) => { + const [showTooltip, setShowTooltip] = useState(false); + + return ( +