'react toastify does not work it gives a div as it output

**as you can see i am trying to show toast by using toastify and i install it but still it not working and it gives a div when it render**

import React, { useRef, useState } from 'react'; import { Spinner } from 'react-bootstrap'; import { useSendPasswordResetEmail, useSignInWithEmailAndPassword, } from 'react-firebase-hooks/auth'; import { Link, useLocation, useNavigate } from 'react-router-dom'; import { toast, ToastContainer } from 'react-toastify'; import auth from '../../../firebase.init'; import Loading from '../Loading/Loading'; import Socailmedia from '../socailmedia/Socailmedia'; import "./Login.css"

const Login = () => {
    const [showpass, setShowpass] = useState(false);
    const navigate = useNavigate()
    const location = useLocation()
    const EmailRef = useRef('');
    const PasswordRef = useRef('');
    const [sendPasswordResetEmail, sending] = useSendPasswordResetEmail(
        auth
    );

    const from = location.state?.from?.pathname || "/";




    let errorElement;
    const [
        signInWithEmailAndPassword,
        user,
        loading,
        error,
    ] = useSignInWithEmailAndPassword(auth);

    const logInUser = event => {
        event.preventDefault()

        const email = event.target.email.value;
        const password = event.target.password.value;

        signInWithEmailAndPassword(email, password)

    }

    const hendelForgetPssword = async () => {
        const email = EmailRef.current.value;
        if (email) {
            await sendPasswordResetEmail(email);
            toast("email sent");
        }
        else {
            toast('enter your email')
        }

    }


    if (loading || sending) {
        return <Loading></Loading>
    }

    if (user) {
        navigate(from, { replace: true });
        console.log(user.user.email);

        const url = `https://hidden-fortress-66686.herokuapp.com/login`

        fetch(url, {
            method: 'POST',
            body: JSON.stringify({
                email: user.user.email
            }),
            headers: {
                'Content-type': 'application/json; charset=UTF-8',
            },
        })
            .then(res => res.json())
            .then((data) => {
                console.log(data.token);
                localStorage.setItem("accessToken", data.token) // send token to localsotorage

                navigate('/')
            });


    }
    if (error) {
        errorElement = <p className='text-danger'>Error: {error?.message}</p>
    }



    return (
        <div className='from-container'>
            <form onSubmit={logInUser}>
                <div>
                    <h3 className='from-title text-primary text-center'>Please Login</h3>
                    <div className="input-group">
                        <input type="email" name="email" ref={EmailRef} id="" required placeholder='Enter your Email' />
                    </div>
                    <div className="input-group">
                        <input name="password" type={showpass ? "text" : "password"} id="" required placeholder='Enter Password' />

                    </div>

                    <input type="checkbox" name="" id="" onClick={() => setShowpass(!showpass)} /> <span>see password</span>

                    <p>
                        {
                            loading && <div className='spinner'><Spinner animation="border" variant="warning" /></div>
                        }
                    </p>
                    {errorElement}
                    <input className='from-submit bg-primary' type="submit" value="Login" />
                </div>
                <div className='d-flex justify-content-around align-items-center'>
                    <div>
                        <Link className='form-link' to='/signup'>Create new account !  </Link>
                    </div>
                    <div>
                        <button className='form-link btn btn-link' onClick={hendelForgetPssword}>Forget Password !</button>

                    </div>
                </div>



                <Socailmedia></Socailmedia>
                <ToastContainer></ToastContainer>

            </form>
        </div>
    );
};

export default Login;


Solution 1:[1]

I didn't set the import react toastfy that's why it gives this kind of problem.

I solved the react css problem with this:

import 'react-toastify/dist/ReactToastify.css';

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 juagicre