Open
Description
app.jsx::-
import "./styles.css";
import Toaster from "react-hot-toast";
import Button from "./component/Button";
export default function App() {
return (
);
}
Button component::--
import { toast } from "react-hot-toast";
const Button = () => {
const callme = () => {
toast.success("this is called");
};
return (
<>
this is button
</>
);
};
export default Button
Metadata
Metadata
Assignees
Labels
No labels