## π Quick Summary Learn how to display error messages like a pro with toast notifications in React and daisyUI! Customizable, easy, fun! π¨π --- ### π **Hello Hive Legends!** Hope everyone's code is bug-free, and coffee is strong! βπ Iβm back with my *ReactJS learning* journey, powered by Hive Blockchain. This time, weβre getting crispy with toast messagesβno burnt edges, I promise! π --- ### π **ReactJS Journey So Far** Missed my earlier posts? No worries! Hereβs the binge-list: - [π **Day One**](https://peakd.com/hive-139531/@sagarkothari88/integrate-aioha-with-your-react-app-from-scratch-vite--tailwind--daisyui): Fresh React app + AIOHA integration! - [π§ **Day Two**](https://peakd.com/hive-139531/@sagarkothari88/integrating-react-router-my-routing-adventures-with-react): Routing drama & rebellious NavBar π€ - [π οΈ **Day Three**](https://peakd.com/hive-139531/@sagarkothari88/from-navbar-mess-to-react-router-success-fixing-layouts-routing-and-aioha-in-one-go): Fixed Layouts, Routing & AIOHA π₯ - [π§ **Day Four**](https://peakd.com/hive-139531/@sagarkothari88/day-4-reactjs-adventures--distriator-progress-usestate-useeffect-and-env-chaos): useState, useEffect, and .env headaches π - [π§Ή **Day Five**](https://peakd.com/hive-139531/@sagarkothari88/level-up-your-imports-using-path-aliases-for-cleaner-react--typescript-projects): Path Aliases to clean up relative path spaghetti π - [π‘ **Day Six**](https://peakd.com/hive-139531/@sagarkothari88/day-6-learning-reactjs-calling-apis-and-creating-context-providers-or-distriator-feature-update): Calling APIs & Creating Context Providers ---  --- ## π₯³ **Todayβs Recipe: Toasting Errors Like a Pro!** Ever wanted to yell βERROR!β at your users but in a friendly way? Enter: **toast messages!** ππ₯ Letβs learn how to show an error using a daisyUI toast, and *nothing else!* Sit back and snack on these steps! π --- ### π§ **Step 1: Make the Toast Component** Create this in your React app: ``` src/components/ βββ Toast.tsx ``` --- ### ποΈ **Step 2: Define Toast Props** Props are super importantβlike ingredients in your toast! Hereβs what youβll need: ``` import React, { useEffect } from "react"; type ToastProps = { message: string; show: boolean; setShow: React.Dispatch<React.SetStateAction<boolean>>; }; ``` --- ### π₯ͺ **Step 3: Write the Toast Component** Your bread and butter code: ``` const Toast: React.FC<ToastProps> = ({ message, show, setShow }) => { useEffect(() => {}, [show, setShow]); function showToast() {} function noToast() { return <></>; } return show ? showToast() : noToast(); }; ``` --- ### π **Step 4: Get the DaisyUI Snippet** Copy the error toast code snippet from DaisyUI! Hereβs how it looks:  Now click on JSX and copy it:  --- ### π₯ **Step 5: Update showToast() Function** Display your error toast at the bottom right, always: ``` function showToast() { return ( <div className="fixed bottom-4 right-4 z-50 min-w-[200px] transition-opacity duration-300"> <div role="alert" className="alert alert-error shadow-lg px-4 py-2 rounded-md"> <svg xmlns="http://www.w3.org/2000/svg" className="h-6 w-6 shrink-0 stroke-current" fill="none" viewBox="0 0 24 24" > <path strokeLinecap="round" strokeLinejoin="round" strokeWidth="2" d="M10 14l2-2m0 0l2-2m-2 2l-2-2m2 2l2 2m7-2a9 9 0 11-18 0 9 9 0 0118 0z" /> </svg> <span>{message}</span> </div> </div> ); } ``` --- ### β±οΈ **Step 6: Hide Toast Automatically** No one likes a toast that wonβt leave. Use `useEffect` to hide after 1.5 seconds: ``` useEffect(() => { if (show) { const timer = setTimeout(() => { setShow(false); }, 1500); // 1.5 seconds! return () => clearTimeout(timer); } }, [show, setShow]); ``` --- ### π€© **Your Finished `Toast.tsx`:** Check it all out here: https://gist.github.com/sag333ar/961a124d77d66551b87d75bfa59e82a7 --- ## π **Using the Toast Message in Your App** Hereβs how to use your new Toast: ``` import Toast from "@/components/Toast"; const HiveUserAvatarButton = () => { const [showToast, setShowToast] = useState<boolean>(true); const [errorMessage, setErrorMessage] = useState<string>("show an error 1 time"); function performLogin(result: LoginResult) { if (result.success) { setIsLoading(true); } else { setIsLoading(false); setErrorMessage(result.error || 'Something went wrong'); // π setShowToast(true); // π Show Toast } } return ( <> {/* your rest of the code */} <Toast message={errorMessage} show={showToast} setShow={setShowToast} /> </> ); } ``` --- ## π― **Closing Toast: Whatβs Next?** With this, your app can shout its errors (gently)! π£οΈ **Real plot twist:** My co-dev discovered [Sonner](https://github.com/emilkowalski/sonner)βitβs even more magical for toasts. π Mine was pretty cool, but Sonner is next-level! Try both, and see which one you love! --- ## π **Thank You, Amazing Hive Fam!** - More power to Hive Community Members! π - More power to Hive Blockchain! πͺπ» See you all soonβmay your code never fail silently! πΌ --- ### π Final Note - I asked ChatGPT/AI to help optimize this post to make it more readable and viewer-friendly. - Here is the link where you can find both original content & improvements made by AI - https://www.perplexity.ai/search/15ab5a4e-8b95-4c10-bef1-11cb135fa05a --- ### π My Contributions to β¦οΈ Hive Ecosystem | Contribution | To | Hive | Ecosystem | |--------------|----|------|-----------| | Hive Witness Node | Hive API Node (in progress) | 3Speak Video Encoder Node Operator (highest number of nodes) | 3Speak Mobile App Developer | | 3Speak Podcast App Developer | 3Speak Shorts App Developer | 3Speak Support & Maintenance Team | [Distriator Developer](https://distriator.com/) | | [CheckinWithXYZ](https://checkinwith.xyz/) | [Hive Inbox](https://hive-inbox.the-hive-mobile.app/) | [HiFind](https://hifind.the-hive-mobile.app/) | [Hive Donate App](https://donate.the-hive-mobile.app/) | | Contributed to HiveAuth Mobile App | Ecency β 3Speak Integration | Ecency β InLeo Integration | Ecency β Actifit Integration | | [Hive Stats App](https://stats.the-hive-mobile.app/) | [Vote for Witness App](https://witness.the-hive-mobile.app/) | [HiveFlutterKit](https://hiveflutterkit.sagarkothari88.one/docs/intro) | [New 3Speak App](https://3speak.sagarkothari88.one/#/?tab=home) | --- ### π Support Back β€οΈ **Appreciate my work? Consider supporting @threespeak & @sagarkothari88!** β€οΈ | Vote | For | Witness | |------|-----|---------| | [](https://witness.the-hive-mobile.app/#/witnesses/@sagarkothari88) | [sagarkothari88](https://witness.the-hive-mobile.app/#/witnesses/@sagarkothari88) | @sagarkothari88 | | [](https://witness.the-hive-mobile.app/#/witnesses/@threespeak) | [threespeak](https://witness.the-hive-mobile.app/#/witnesses/@threespeak) | @threespeak | ---
author | sagarkothari88 |
---|---|
permlink | learning-reactjs--vite--ts--aioha-day-7-show-a-toast-message |
category | hive-139531 |
json_metadata | "{"app":"peakd/2025.7.3","format":"markdown","description":"Learn how to spice up your React apps by showing error toast messages with DaisyUI! Includes fun code, images, and tips","tags":["hive","development","webapp","reactjs","javascript","frontend","waiv","india","threespeak","distriator"],"users":["sagarkothari88","threespeak"],"image":["https://miro.medium.com/v2/resize:fit:641/1*jQi00Hw-_FobXU8bGqudaw.jpeg","https://files.peakd.com/file/peakd-hive/sagarkothari88/23tm76xAdfmn7YwZLxBYsqZZch8gyFrPmGaWmxGiZhqFeW6Anv7Mbjsdrx2PAvFG2itvo.png","https://files.peakd.com/file/peakd-hive/sagarkothari88/23tvAS9o7t3mYBZ2Him6KtFLd82jxC3SuxDW7HofR6hC8CvHmU2HcEScrFbzk39fZCDcX.png","https://images.hive.blog/u/sagarkothari88/avatar","https://images.hive.blog/u/threespeak/avatar"]}" |
created | 2025-08-02 04:30:00 |
last_update | 2025-08-02 04:30:00 |
depth | 0 |
children | 3 |
last_payout | 1969-12-31 23:59:59 |
cashout_time | 2025-08-09 04:30:00 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 7.124 HBD |
promoted | 0.000 HBD |
body_length | 7,568 |
author_reputation | 546,213,236,883,215 |
root_title | "π₯³ Learning ReactJS + Vite + TS + AIOHA - Day 7 β Show a Toast Message! π₯¨" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 144,617,033 |
net_rshares | 23,395,468,294,478 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
penguinpablo | 0 | 143,294,283,066 | 14% | ||
funnyman | 0 | 1,535,760,910 | 5.6% | ||
gamer00 | 0 | 19,418,654,094 | 5% | ||
redes | 0 | 4,048,302,276,200 | 41% | ||
ambyr00 | 0 | 637,550,064 | 0.75% | ||
freebornsociety | 0 | 3,001,210,066 | 5.07% | ||
thecrazygm | 0 | 82,325,086,501 | 100% | ||
nenio | 0 | 89,251,845,835 | 23% | ||
bsameep | 0 | 2,254,248,251 | 15% | ||
alphacore | 0 | 7,232,424,233 | 7.12% | ||
techken | 0 | 28,492,600,839 | 30% | ||
vikbuddy | 0 | 33,453,576,882 | 39.1% | ||
hardikv | 0 | 992,644,425 | 7.5% | ||
codingdefined | 0 | 54,759,178,547 | 7.5% | ||
ahlawat | 0 | 31,001,216,056 | 55% | ||
etblink | 0 | 67,749,952,133 | 7.5% | ||
noloafing | 0 | 3,044,585,535 | 49.76% | ||
accelerator | 0 | 39,410,281,925 | 60% | ||
splash-of-angs63 | 0 | 5,305,398,213 | 20% | ||
jatinhota | 0 | 42,825,797,737 | 40% | ||
lifecruiser | 0 | 4,319,336,833 | 50% | ||
inuke | 0 | 3,826,186,008 | 50% | ||
bobinson | 0 | 183,169,841,396 | 15% | ||
sidp715 | 0 | 856,345,802 | 15% | ||
vishire | 0 | 513,038,930 | 15% | ||
silenteyes | 0 | 475,850,018 | 7.5% | ||
shonyishere | 0 | 788,258,363 | 15% | ||
sneakyninja | 0 | 17,024,182,278 | 24.88% | ||
steembasicincome | 0 | 2,126,286,271,074 | 100% | ||
cryptonized | 0 | 236,887,933 | 14% | ||
frames | 0 | 881,354,069 | 25% | ||
irisworld | 0 | 1,198,543,568 | 7.5% | ||
bengy | 0 | 2,953,078,906 | 3% | ||
bala41288 | 0 | 747,570,643,091 | 20% | ||
piotrgrafik | 0 | 982,044,902,382 | 80% | ||
aakom | 0 | 455,906,731 | 100% | ||
indiaunited | 0 | 996,365,758,128 | 15% | ||
anikys3reasure | 0 | 1,332,125,663 | 50% | ||
abrockman | 0 | 3,010,057,823,710 | 100% | ||
sbi2 | 0 | 1,414,890,536,430 | 100% | ||
awesomegames007 | 0 | 1,442,771,464 | 50% | ||
manojbhatt | 0 | 6,948,316,821 | 15% | ||
sbi3 | 0 | 683,699,778,142 | 100% | ||
sbi4 | 0 | 520,518,832,107 | 100% | ||
techcoderx | 0 | 993,593,351,485 | 100% | ||
ragavee | 0 | 512,027,569 | 7.5% | ||
sbi5 | 0 | 353,435,887,831 | 100% | ||
indiaunited-bot | 0 | 554,050,685 | 15% | ||
sbi6 | 0 | 270,768,175,639 | 100% | ||
thedailysneak | 0 | 23,254,683,359 | 24.88% | ||
dalz | 0 | 1,515,009,581,002 | 100% | ||
sbi7 | 0 | 203,231,401,987 | 100% | ||
cubapl | 0 | 3,891,847,896 | 30% | ||
voxmortis | 0 | 11,232,833,220 | 6% | ||
a-bot | 0 | 13,824,853,437 | 30% | ||
babysavage | 0 | 9,362,443,797 | 49.76% | ||
ravensavage | 0 | 4,886,791,850 | 49.76% | ||
ecoinstats | 0 | 218,634,425,153 | 100% | ||
sbi8 | 0 | 149,189,277,336 | 100% | ||
piestrikesback | 0 | 641,900,950 | 100% | ||
sbi9 | 0 | 109,601,132,299 | 100% | ||
sbi10 | 0 | 81,463,226,290 | 100% | ||
karishmasingh711 | 0 | 2,868,072,208 | 15% | ||
khan.dayyanz | 0 | 6,919,015,231 | 13.5% | ||
jacuzzi | 0 | 677,726,190 | 1.4% | ||
synergized | 0 | 4,448,072,093 | 50% | ||
hungrybear | 0 | 624,672,298 | 14% | ||
kggymlife | 0 | 4,071,087,787 | 20% | ||
bigmoneyman | 0 | 524,842,872 | 30% | ||
kittykate | 0 | 105,199,509,029 | 100% | ||
kgswallet | 0 | 531,641,249 | 10% | ||
everythingsmgirl | 0 | 7,792,070,590 | 50% | ||
sbi-tokens | 0 | 21,955,354,373 | 49.76% | ||
kanibot | 0 | 46,940,430,583 | 20% | ||
bozz.sports | 0 | 12,219,504,429 | 5% | ||
bilpcoin.pay | 0 | 547,577,567 | 10% | ||
qwertm | 0 | 3,967,864,665 | 50% | ||
unpopular | 0 | 115,052,097,992 | 10.25% | ||
bilpcoinbpc | 0 | 888,815,700 | 5% | ||
davidlionfish | 0 | 24,893,415,614 | 100% | ||
treasure.hoard | 0 | 532,102,710,135 | 100% | ||
ykretz | 0 | 1,370,102,202 | 15% | ||
kiemis | 0 | 8,792,343,264 | 2.5% | ||
balvinder294 | 0 | 4,259,050,757 | 30% | ||
archon-gov | 0 | 99,384,151,704 | 50% | ||
dikshabihani | 0 | 607,161,979 | 7.5% | ||
r-nyn | 0 | 16,248,436,279 | 11% | ||
yogeshbhatt | 0 | 1,243,473,585 | 15% | ||
cocaaladioxine | 0 | 18,256,884,031 | 97% | ||
godfather.ftw | 0 | 8,963,155,337 | 13.5% | ||
gr33nm4ster | 0 | 753,779,940,786 | 100% | ||
sweetgemstone | 0 | 7,252,716,887 | 100% | ||
emsenn0 | 0 | 1,996,535,442 | 9.95% | ||
azamrai | 0 | 536,273,313,603 | 100% | ||
vaipraonde | 0 | 19,536,253,040 | 25% | ||
muterra | 0 | 97,772,116,888 | 15% | ||
hive.friends | 0 | 874,838,034 | 50% | ||
konchix | 0 | 38,604,394,415 | 100% | ||
disha30 | 0 | 1,839,340,458 | 15% | ||
keithtaylor | 0 | 3,500,510,452 | 22% | ||
kamaleshwar | 0 | 2,316,083,529 | 15% | ||
chandra.shekar | 0 | 11,175,007,729 | 15% | ||
kannannv | 0 | 26,298,121,210 | 15% | ||
pishio | 0 | 149,160,987,271 | 5% | ||
curvymosquito83 | 0 | 6,331,899,214 | 100% | ||
tub3r0 | 0 | 750,042,824 | 10% | ||
gr33nsquad | 0 | 10,987,045,042 | 100% | ||
deimage | 0 | 4,745,976,723 | 7.5% | ||
heteroclite | 0 | 5,235,354,513 | 7.5% | ||
hindavi | 0 | 431,806,339,378 | 100% | ||
djblendah | 0 | 882,751,807 | 100% | ||
balaz | 0 | 26,785,013,106 | 20% | ||
ryosai | 0 | 5,927,489,474 | 24% | ||
yisusth | 0 | 48,609,631,763 | 100% | ||
veryhappyday | 0 | 252,843,096,727 | 100% | ||
nurfay | 0 | 118,982,714,255 | 100% | ||
lightbruce17 | 0 | 17,582,630,749 | 100% | ||
eunice9200 | 0 | 1,070,972,474 | 7.5% | ||
incublus | 0 | 155,753,411,310 | 51% | ||
monsterrerentals | 0 | 29,615,979,609 | 100% | ||
pinkchic | 0 | 657,574,397 | 2.25% | ||
tekraze | 0 | 1,701,704,711 | 60% | ||
imacryptogeek | 0 | 4,693,265,708 | 15% | ||
pof.archon | 0 | 461,831,574 | 50% | ||
lectureme | 0 | 1,546,493,823 | 100% | ||
tebesc | 0 | 3,280,810,517 | 3.75% | ||
blessskateshop | 0 | 58,272,868,347 | 12% | ||
lolz.byte | 0 | 0 | 100% | ||
hiveyucatan | 0 | 27,860,465,464 | 100% | ||
loyo.jorge | 0 | 1,720,507,911 | 100% | ||
bbypanda4 | 0 | 1,081,184,330 | 15% | ||
vastavikadi | 0 | 1,615,156,433 | 31% | ||
ryanaa | 0 | 40,488,328,563 | 100% | ||
michael561 | 0 | 2,707,685,897 | 9.95% | ||
luckygold | 0 | 20,948,488,738 | 100% | ||
thecrazygm.bank | 0 | 11,506,579,458 | 100% | ||
magic.byte | 0 | 0 | 100% | ||
v-36 | 0 | 1,040,851,912 | 100% | ||
lovelymusictube1 | 0 | 1,939,262,987 | 51% | ||
hivekr | 0 | 19,072,452,109 | 100% |
This post has been manually curated by @bhattg from Indiaunited community. Join us on our [Discord Server](https://discord.gg/bGmS2tE). Do you know that you can earn a passive income by delegating to @indiaunited. We share more than 100 % of the curation rewards with the delegators in the form of IUC tokens. HP delegators and IUC token holders also get upto 20% additional vote weight. Here are some handy links for delegations: [100HP](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=indiaunited&vesting_shares=166353.53282918298%20VESTS), [250HP](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=indiaunited&vesting_shares=415883.8320729575%20VESTS), [500HP](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=indiaunited&vesting_shares=831767.664145915%20VESTS), [1000HP](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=indiaunited&vesting_shares=1663535.32829183%20VESTS). [](https://discord.gg/bGmS2tE) <sub>**100% of the rewards from this comment goes to the curator for their manual curation efforts. Please encourage the curator @bhattg by upvoting this comment and support the community by voting the posts made by @indiaunited.**</sub>
author | indiaunited | ||||||
---|---|---|---|---|---|---|---|
permlink | indiaunited-1754117736992 | ||||||
category | hive-139531 | ||||||
json_metadata | {"app":"hiveblog/0.1","format":"markdown","tags":["hive","development","webapp","reactjs","javascript","frontend","waiv","india","threespeak","distriator"]} | ||||||
created | 2025-08-02 06:55:36 | ||||||
last_update | 2025-08-02 06:55:36 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 1969-12-31 23:59:59 | ||||||
cashout_time | 2025-08-09 06:55:36 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 1,325 | ||||||
author_reputation | 99,476,227,867,617 | ||||||
root_title | "π₯³ Learning ReactJS + Vite + TS + AIOHA - Day 7 β Show a Toast Message! π₯¨" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 144,619,653 | ||||||
net_rshares | 0 |
Stop downvoting my original content with your alt account @letusbuyhive Please explain why you keep downvoting my original content π€ Also πππππ Blocktrades can you please stop downvoting my original content with your alt accounts thanks ππΎ πππππππππππππ Don't be jealous So sad @themarkymark aka @theycallmemarky Aka @marky @gogreenbuddy Aka @usainvote @buildawhale Aka @punkteam Aka @ipromote @letusbuyhive Aka @sagarkothari88 please explain why you keep downvoting my original content and comments π€ Please explain to everyone why π€ @meno @steevc @crimsonclad @azircon let's not forget blocktrades π please tell your racist friend to stop downvoting my original content How can we we allow a mentally ill person to have so much control on Hive π It's unbelievable you downvoted this [Goodbye Auntie R.I.P ππΎ](https://hive.blog/hive-148441/@kgakakillerg/goodbye-auntie-r-i-p) You fucked up big time it's clear blocktrades is in control π If nothing can be done about your downvote abuse then Hive is a dead project ππΎ It's crazy that the person doing the downvoting is also farming the shit out of Hive ππππ If anyone wants to speak to me privately send me a message on Instagram @kgakakillerg You can never stop the truth with lies ππππππ It's crazy we have a man who pretends to be a millionaire running around Hive downvoting people for fun π€ and nothing has been done π€ It's crazy that someone is trying to bully me on Hive ππππππππ It's unbelievable that no one has came to help as people are afraid to say anything or they get downvoted too ππππππ There's no real freedom on Hive if one person can cause so much harm I feel sorry for you ππΎ One thing you need to remember you can't take anything with you ππππ Go and enjoy your life have a bit of fun let your hair down go out and meet some real people in the flesh π Your actions show that you must own Hive Blockchain π€ why do your actions go unchallenged π€ You are now stalking me ππππ Are you jealous about the DHF ππππ Aren't you farming enough rewards ππππ I heard you were into very young girls ππππππ Is that why you are always online π€ Stalking people No one is scared of you πππππππ You are bad for Hive Power down and go away get a life https://hive.blog/hive-135178/@crimsonclad/re-kgakakillerg-sxllhv https://hive.blog/hive-148441/@hivewatchers/svftu9 https://hive.blog/hive-148441/@hivewatchers/svdjjz https://hive.blog/hive-176853/@steevc/re-kgakakillerg-syyy4x https://hive.blog/dev/@howo/re-kgakakillerg-szhax7 https://hive.blog/hive/@steevc/follow-friday-respect It's unbelievable that they downvoted this [Goodbye Auntie R.I.P ππΎ](https://hive.blog/hive-148441/@kgakakillerg/goodbye-auntie-r-i-p) It's clear you need help ππΎ Hive is being held down by downvoting whales Do you get a buzz out of downvoting people π€ You should really try to get outside more spend some time in the real world ππ Why are you pushing people away to blurt and steemit You are all definitely going to hell ππππππππ Why do you want to make enemies all over the world π€ Blocktrades stop making a fool of yourself ππππππ Steevc please explain to your friend they have been exposed πππππ Downvotes are weak like you πππππππ Why don't you go and spend your millions of dollar's you have ππππππππππππ Blocktrades please explain why you keep downvoting my original content with your alt accounts π€ You are so sad it's unreal πππππ You must know that you can't hide on Hive πππππππ If you want everyone to leave Hive keep doing what you are doing ππππππππππ Just remembered who started this I'll be here to turn the lights off ππππππ You are still stalking me πππππ it proves you have no life outside of Hive πππππππππΎππΎππΎππΎππΎππΎππΎπππππ Blocktrades please can you stop downvoting my original content with your alt accounts π€ Also is bullying people ok on Hive π€ You are only making Hive look like a big scam Why do you keep stalking me I'm not gay sorry I can't help you ππΎ Just tell me what the issue is π€ You are that stupid you set up an account called letusbuyhive to downvote people and support your farming Hive friend's πππππ and @buildawhale Please get some help ππΎ It's clear who has mental health issues that's why you should really stop pointing fingers at others πππππππππ It's clear blocktrades is behind this πππππ Can you please explain why you keep downvoting my original content I don't want to hear it's because disagreement of rewards I don't make any πππππ Please move on with your life blocktrades and leave me alone thank you ππΎ Please tell everyone why you keep downvoting my original content π€ Still stalking me ππππππ The way you are stalking me it's clear you have no Life outside of Hive πππππππ Keep downvoting people away πππππ Some people never learn ππππππππ€£π€£π€£π€£π€£ Is life that bad πππππ You can't win this πππππππππ
author | kgakakillerg |
---|---|
permlink | t0cofb |
category | hive-139531 |
json_metadata | {"users":["letusbuyhive","themarkymark","theycallmemarky","marky","gogreenbuddy","usainvote","buildawhale","punkteam","ipromote","sagarkothari88","meno","steevc","crimsonclad","azircon","kgakakillerg"],"links":["https://hive.blog/hive-148441/@kgakakillerg/goodbye-auntie-r-i-p"],"app":"hiveblog/0.1"} |
created | 2025-08-02 04:57:18 |
last_update | 2025-08-02 04:57:18 |
depth | 1 |
children | 0 |
last_payout | 1969-12-31 23:59:59 |
cashout_time | 2025-08-09 04:57:18 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 4,903 |
author_reputation | 560,017,316,146,755 |
root_title | "π₯³ Learning ReactJS + Vite + TS + AIOHA - Day 7 β Show a Toast Message! π₯¨" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 144,617,730 |
net_rshares | 0 |
I never thought I would get to see someone as a Developer posting on HIVE especially the coding tutorials. Well there's a better way to do this, that is to use the react-toastify library. That's better with its inbuilt features for success, error and info messages. So, I use that.
author | vastavikadi |
---|---|
permlink | re-sagarkothari88-202582t22642325z |
category | hive-139531 |
json_metadata | {"links":[],"type":"comment","tags":["hive-139531","hive","development","webapp","reactjs","javascript","frontend","waiv","india","threespeak","distriator"],"app":"ecency/3.3.3-mobile","format":"markdown+html"} |
created | 2025-08-02 16:36:42 |
last_update | 2025-08-02 16:36:42 |
depth | 1 |
children | 0 |
last_payout | 1969-12-31 23:59:59 |
cashout_time | 2025-08-09 16:36:42 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 282 |
author_reputation | 464,337,143,623 |
root_title | "π₯³ Learning ReactJS + Vite + TS + AIOHA - Day 7 β Show a Toast Message! π₯¨" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 144,632,977 |
net_rshares | 0 |