import { toast } from "react-toastify"; import { FormGroup } from "reactstrap"; const SocialApp = () => { const handlesubmit = () => { toast.error("This is only demo purpose, click on the Sign In button to login."); }; return ( ); }; export default SocialApp;