create account

πŸš€ Integrate AIOHA with Your React App from Scratch (Vite + Tailwind + DaisyUI) by sagarkothari88

View this thread on: hive.blogpeakd.comecency.com
· @sagarkothari88 ·
$37.09
πŸš€ Integrate AIOHA with Your React App from Scratch (Vite + Tailwind + DaisyUI)
![reactjs + tailwind + vite](https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRfrgmjHkWw-TBZ9BvNc6OBqe4lLqnAfx0-JA&s)

Hey Hive fam! 🐝  
Are you building a React app and wondering *"How the heck do I add Hive login with AIOHA?"* πŸ˜΅β€πŸ’«  
Well, you’re in for a treat! Because in this post, I’ll walk you through integrating the @aioha package into a React project from scratchβ€”with sprinkles of Tailwind, DaisyUI, and good vibes. πŸŒˆπŸ’»

---

## 🧰 Project Setup

### πŸ”¨ Step 1: Create Your Vite + React + TypeScript App

```bash
npm create vite@latest vite-react-aioha-ts -- --template react-ts
cd vite-react-aioha-ts
npm install
```

### πŸ’… Step 2: Add TailwindCSS

```bash
npm install tailwindcss @tailwindcss/vite
npm install -D postcss autoprefixer
```

Edit `vite.config.ts`:

```ts
import tailwindcss from '@tailwindcss/vite';

export default defineConfig({
  plugins: [react(), tailwindcss()],
});
```

πŸ“Έ Screenshot for visual learners:  
![vite.config.ts](https://files.peakd.com/file/peakd-hive/sagarkothari88/23tGXhX1A7xKvtvGD3PKrokZZSi8sSPPicxsMHYVZS4m5WEZKexyUCXbuogzdGzXgMQgH.png)

---

## 🌸 Add DaisyUI (Because UI should never be boring!)

```bash
npm i -D daisyui@latest
```

---

## πŸ“¦ Install AIOHA

```bash
pnpm i @aioha/react-ui @aioha/aioha
```

Now we’re getting serious! 😎

---

## βš™οΈ Integrate AIOHA in `App.tsx`

🧽 Clean up `App.tsx` (yes, delete the fluff).  
πŸ“Έ Here's how mine looks:  
![App.tsx screenshot](https://files.peakd.com/file/peakd-hive/sagarkothari88/23t76kWDdojbiVdAKWyC8nqfkMiiSd6Cg6fDAA85SuEhuC93BDU54JvTGdMyagDvgMYDY.png)

---

## πŸ‘€ Add Hive User Avatar Button Component

Create a file: `HiveUserAvatarButton.tsx`

### πŸ§‘β€πŸŽ¨ Use DaisyUI Avatar Component

Copy JSX from DaisyUI Docs and paste into your component.

> Shorthand tip: Type `rafce` in your file to scaffold the component ⚑

![JSX snippet for avatar](https://files.peakd.com/file/peakd-hive/sagarkothari88/23t74bhEqP4SV8ZFHEHzZwsSN6F5x8dRir3KwxPa5mirhXp5N2TCNB1WqVveGiECiM28j.png)

---

## πŸͺ„ Combine DaisyUI + AIOHA

In `HiveUserAvatarButton.tsx`, do the following:

1. Import AIOHA methods  
2. Add a button to open login modal  
3. Use AIOHA popup (copied from [official docs](https://aioha.dev/docs/react/ui#usage))

🎯 Final result:  
![Daisy + AIOHA integration](https://files.peakd.com/file/peakd-hive/sagarkothari88/23tGW1byw84HXcKspL42xShR6fZSy9XzhnNrS6AoG7KPdQ3BgbxbAAiWeCQRQuD5bwxLS.png)

---

## πŸ”— Plug the Button into `App.tsx`

Import and use your shiny new `<HiveUserAvatarButton />` wherever needed.

---

## 🐞 Debug Like a Pro (in VS Code)

1. Click on **Run & Debug**
2. Choose **"Web App (Chrome)"**
3. Edit the launch fileβ€”set port to `5173`  
4. Run the app with:

```bash
npm run dev
```

...then hit F5 to debug inside Chrome! πŸ•΅οΈβ€β™€οΈ  
![VS Code Debug](https://files.peakd.com/file/peakd-hive/sagarkothari88/23tRv7LcgMjLNvw1igLftzmbDDzkFXdpoe5tSzSy2WXNG879wNZLCfuuWYqq4H6VNrjpV.png)

---

## ✨ Polish & Final Touches

### πŸŒ€ Fix: Avatar isn’t rounded?

Add `overflow-hidden` to fix that:
```html
<div className="avatar overflow-hidden">...</div>
```

![Fix overflow](https://files.peakd.com/file/peakd-hive/sagarkothari88/23t77FNxg4YXddUpsTntjxQGvwdBL1QPfTWkGeNN6JVvqKRZTaJr4PpnL968YvCrWCSGH.png)

---

### 🚫 Fix: CSS conflicts with AIOHA

Some popup buttons weren’t displaying properly due to boilerplate styles.  
I removed unnecessary button CSS and boom πŸ’₯β€”it’s fixed!

![Remove boilerplate CSS](https://files.peakd.com/file/peakd-hive/sagarkothari88/Eo44ERPFPky8s9VphdFPdtKnRwwyYioqcJAvPfXmkA5AqaESDG6FkCZ3ubYGXqajTzt.png)

---

## πŸ§ͺ Try Out Account Switching

Logged in as `@shaktimaaan` for testing. Here's the login view and switch-user popup:

![Switch User](https://files.peakd.com/file/peakd-hive/sagarkothari88/23tGRgxuiJRu83ccemnZJvxjqpY1mBWtxdh7UvjS15zWZH6RaPitEiVNZW1z1ttDVLmWh.png)

> Dear @techcoderx – consider adding avatars in switch-user list? πŸ™πŸ™‚

---

## πŸ₯³ Wrap-Up

We’ve successfully:

βœ… Created a modern React + Vite + Tailwind setup  
βœ… Integrated AIOHA login + popup  
βœ… Styled it with DaisyUI  
βœ… Fixed common issues  
βœ… Debugged like a pro in VS Code

If you found this helpful, don’t forget to **upvote** 🧑  
Your support keeps me coding and caffeinated! β˜•

**More power to Hive & its awesome community!** 🐝πŸ”₯

---

### πŸ“ Final Note

Since English isn’t my first language, I asked ChatGPT/AI to help optimize this post to make it more readable and viewer-friendly.

I hope this isn’t against any downvoting rules πŸ™  
But if it is, feel free to let me know and I’ll be more cautious next time.

---

### πŸš€ 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://images.hive.blog/u/sagarkothari88/avatar)](https://witness.the-hive-mobile.app/#/witnesses/@sagarkothari88) | [sagarkothari88](https://witness.the-hive-mobile.app/#/witnesses/@sagarkothari88) | @sagarkothari88 |
| [![](https://images.hive.blog/u/threespeak/avatar)](https://witness.the-hive-mobile.app/#/witnesses/@threespeak) | [threespeak](https://witness.the-hive-mobile.app/#/witnesses/@threespeak) | @threespeak |

---
πŸ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 233 others
πŸ‘Ž  
properties (23)
authorsagarkothari88
permlinkintegrate-aioha-with-your-react-app-from-scratch-vite--tailwind--daisyui
categoryhive-139531
json_metadata"{"app":"peakd/2025.7.3","format":"markdown","description":"Build a React app with AIOHA login using Vite, Tailwind, DaisyUI. From setup to debugβ€”everything in one fun guide! πŸŽ‰πŸ","tags":["hive","development","india","webapp","aioha","reactjs","tutorial","vscode","daisyui","tailwind"],"users":["aioha","latest","tailwindcss","shaktimaaan","techcoderx","threespeak","sagarkothari88"],"image":["https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRfrgmjHkWw-TBZ9BvNc6OBqe4lLqnAfx0-JA&amp;s","https://files.peakd.com/file/peakd-hive/sagarkothari88/23tGXhX1A7xKvtvGD3PKrokZZSi8sSPPicxsMHYVZS4m5WEZKexyUCXbuogzdGzXgMQgH.png","https://files.peakd.com/file/peakd-hive/sagarkothari88/23t76kWDdojbiVdAKWyC8nqfkMiiSd6Cg6fDAA85SuEhuC93BDU54JvTGdMyagDvgMYDY.png","https://files.peakd.com/file/peakd-hive/sagarkothari88/23t74bhEqP4SV8ZFHEHzZwsSN6F5x8dRir3KwxPa5mirhXp5N2TCNB1WqVveGiECiM28j.png","https://files.peakd.com/file/peakd-hive/sagarkothari88/23tGW1byw84HXcKspL42xShR6fZSy9XzhnNrS6AoG7KPdQ3BgbxbAAiWeCQRQuD5bwxLS.png","https://files.peakd.com/file/peakd-hive/sagarkothari88/23tRv7LcgMjLNvw1igLftzmbDDzkFXdpoe5tSzSy2WXNG879wNZLCfuuWYqq4H6VNrjpV.png","https://files.peakd.com/file/peakd-hive/sagarkothari88/23t77FNxg4YXddUpsTntjxQGvwdBL1QPfTWkGeNN6JVvqKRZTaJr4PpnL968YvCrWCSGH.png","https://files.peakd.com/file/peakd-hive/sagarkothari88/Eo44ERPFPky8s9VphdFPdtKnRwwyYioqcJAvPfXmkA5AqaESDG6FkCZ3ubYGXqajTzt.png","https://files.peakd.com/file/peakd-hive/sagarkothari88/23tGRgxuiJRu83ccemnZJvxjqpY1mBWtxdh7UvjS15zWZH6RaPitEiVNZW1z1ttDVLmWh.png","https://images.hive.blog/u/sagarkothari88/avatar","https://images.hive.blog/u/threespeak/avatar"]}"
created2025-07-27 04:30:00
last_update2025-07-27 04:30:00
depth0
children11
last_payout2025-08-03 04:30:00
cashout_time1969-12-31 23:59:59
total_payout_value18.562 HBD
curator_payout_value18.532 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length6,156
author_reputation582,330,427,817,710
root_title"πŸš€ Integrate AIOHA with Your React App from Scratch (Vite + Tailwind + DaisyUI)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id144,428,258
net_rshares122,695,175,217,978
author_curate_reward""
vote details (298)
@aftabirshad ·
Great!
properties (22)
authoraftabirshad
permlinkt03m4e
categoryhive-139531
json_metadata{"app":"hiveblog/0.1"}
created2025-07-28 07:29:03
last_update2025-07-28 07:29:03
depth1
children0
last_payout2025-08-04 07:29:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length6
author_reputation8,144,364,408,020
root_title"πŸš€ Integrate AIOHA with Your React App from Scratch (Vite + Tailwind + DaisyUI)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id144,474,286
net_rshares0
@dobro2020 ·
I see that your main skills are the backend but it's good see post about thirds integration in hive. I have to develop a tool with the new APIs Docs when i have free time
properties (22)
authordobro2020
permlinkre-sagarkothari88-2025727t64737571z
categoryhive-139531
json_metadata{"links":[],"type":"comment","tags":["hive-139531","hive","development","india","webapp","aioha","reactjs","tutorial","vscode","daisyui","tailwind"],"app":"ecency/3.3.3-mobile","format":"markdown+html"}
created2025-07-27 09:47:39
last_update2025-07-27 09:47:39
depth1
children2
last_payout2025-08-03 09:47:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length170
author_reputation68,188,400,976,013
root_title"πŸš€ Integrate AIOHA with Your React App from Scratch (Vite + Tailwind + DaisyUI)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id144,433,730
net_rshares0
@sagarkothari88 ·
I think you got it wrong @dobro2020 

My main skills are on front-end. I usually write apps in swift. Sometimes I write flutter+dart code.
But react is a new journey for me.

For API documentation, I recommend you to use Swagger.

All the best.

Thank you for stopping by.

Have a good day.
<br/><sub>[via Inbox](https://inbox.the-hive-mobile.app)</sub>
properties (22)
authorsagarkothari88
permlinkre-sagarkothari88-20250729t035945447
categoryhive-139531
json_metadata{"tags":["hive-inbox","ios","android","mobile","app","sagarkothari88","comment","reply"],"app":"Inbox","developer":"sagarkothari88","format":"markdown+html","ts":"2025-07-29T03:59:45.448","hash":"MjAyNS0wNy0yOVQwMzo1OTo0NS40NDhfYld4cmIwWjViM1ZZU1V3d1NIZFhUblJoVEhGNE5tbDNjM2hzTUd0MVUxUT0=","version":"1.2.0","route":"Dashboard","os":"Web"}
created2025-07-28 22:29:48
last_update2025-07-28 22:29:48
depth2
children1
last_payout2025-08-04 22:29:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length353
author_reputation582,330,427,817,710
root_title"πŸš€ Integrate AIOHA with Your React App from Scratch (Vite + Tailwind + DaisyUI)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id144,496,728
net_rshares0
@dobro2020 ·
When You start with react it's a totally Journey because is like css, You can in so much ways and get the same result
properties (22)
authordobro2020
permlinkre-sagarkothari88-2025728t193234135z
categoryhive-139531
json_metadata{"links":[],"type":"comment","tags":["hive-139531","hive-inbox","ios","android","mobile","app","sagarkothari88","comment","reply"],"app":"ecency/3.3.3-mobile","format":"markdown+html"}
created2025-07-28 22:32:33
last_update2025-07-28 22:32:33
depth3
children0
last_payout2025-08-04 22:32:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length117
author_reputation68,188,400,976,013
root_title"πŸš€ Integrate AIOHA with Your React App from Scratch (Vite + Tailwind + DaisyUI)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id144,496,772
net_rshares0
@indiaunited ·
Indiaunited Curation 1753592511261
This post has been manually curated by @steemflow 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=166435.0457896019%20VESTS), [250HP](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=indiaunited&vesting_shares=416087.6144740047%20VESTS), [500HP](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=indiaunited&vesting_shares=832175.2289480094%20VESTS), [1000HP](https://hivesigner.com/sign/delegateVestingShares?delegator=&delegatee=indiaunited&vesting_shares=1664350.4578960189%20VESTS). 

[![image.png](https://files.peakd.com/file/peakd-hive/bala41288/46eaz12N-image.png)](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 @steemflow by upvoting this comment and support the community by voting the posts made by @indiaunited.**</sub>
properties (22)
authorindiaunited
permlinkindiaunited-1753592511261
categoryhive-139531
json_metadata{"app":"hiveblog/0.1","format":"markdown","tags":["hive","development","india","webapp","aioha","reactjs","tutorial","vscode","daisyui","tailwind"]}
created2025-07-27 05:01:51
last_update2025-07-27 05:01:51
depth1
children2
last_payout2025-08-03 05:01:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length1,333
author_reputation102,138,994,364,734
root_title"πŸš€ Integrate AIOHA with Your React App from Scratch (Vite + Tailwind + DaisyUI)"
beneficiaries
0.
accountsteemflow
weight10,000
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id144,428,712
net_rshares0
@sagarkothari88 ·
Thank you so much @indiaunited & @steemflow for curation.
Have a good day.
<br/><sub>[via Inbox](https://inbox.the-hive-mobile.app)</sub>
properties (22)
authorsagarkothari88
permlinkre-sagarkothari88-20250729t040057058
categoryhive-139531
json_metadata{"tags":["hive-inbox","ios","android","mobile","app","sagarkothari88","comment","reply"],"app":"Inbox","developer":"sagarkothari88","format":"markdown+html","ts":"2025-07-29T04:00:57.058","hash":"MjAyNS0wNy0yOVQwNDowMDo1Ny4wNThfYld4cmIwWjViM1ZZU1V3d1NIZFhUblJoVEhGNE5tbDNjM2hzTUd0MVUxUT0=","version":"1.2.0","route":"Dashboard","os":"Web"}
created2025-07-28 22:30:57
last_update2025-07-28 22:30:57
depth2
children1
last_payout2025-08-04 22:30:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length137
author_reputation582,330,427,817,710
root_title"πŸš€ Integrate AIOHA with Your React App from Scratch (Vite + Tailwind + DaisyUI)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id144,496,747
net_rshares0
@kgakakillerg ·
Can you please stop downvoting me with your alt account @letsusbuyhive tell Dan and  Marcus I said hello πŸ‘‹πŸΎπŸ˜
properties (22)
authorkgakakillerg
permlinkt05cmr
categoryhive-139531
json_metadata{"users":["letsusbuyhive"],"app":"hiveblog/0.1"}
created2025-07-29 05:59:21
last_update2025-07-29 05:59:21
depth3
children0
last_payout2025-08-05 05:59:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length108
author_reputation430,276,962,668,111
root_title"πŸš€ Integrate AIOHA with Your React App from Scratch (Vite + Tailwind + DaisyUI)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id144,501,538
net_rshares0
@latinowinner ·
it looks like a professional advice
properties (22)
authorlatinowinner
permlinkre-sagarkothari88-2025727t182444793z
categoryhive-139531
json_metadata{"tags":["hive","development","india","webapp","aioha","reactjs","tutorial","vscode","daisyui","tailwind"],"app":"ecency/4.2.1-vision","format":"markdown+html"}
created2025-07-27 08:24:45
last_update2025-07-27 08:24:45
depth1
children1
last_payout2025-08-03 08:24:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length35
author_reputation3,096,577,188,221
root_title"πŸš€ Integrate AIOHA with Your React App from Scratch (Vite + Tailwind + DaisyUI)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id144,431,276
net_rshares0
@sagarkothari88 ·
@latinowinner Thank you.

I'll keep up my best
<br/><sub>[via Inbox](https://inbox.the-hive-mobile.app)</sub>
properties (22)
authorsagarkothari88
permlinkre-sagarkothari88-20250729t040005875
categoryhive-139531
json_metadata{"tags":["hive-inbox","ios","android","mobile","app","sagarkothari88","comment","reply"],"app":"Inbox","developer":"sagarkothari88","format":"markdown+html","ts":"2025-07-29T04:00:05.876","hash":"MjAyNS0wNy0yOVQwNDowMDowNS44NzZfYld4cmIwWjViM1ZZU1V3d1NIZFhUblJoVEhGNE5tbDNjM2hzTUd0MVUxUT0=","version":"1.2.0","route":"Dashboard","os":"Web"}
created2025-07-28 22:30:06
last_update2025-07-28 22:30:06
depth2
children0
last_payout2025-08-04 22:30:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length109
author_reputation582,330,427,817,710
root_title"πŸš€ Integrate AIOHA with Your React App from Scratch (Vite + Tailwind + DaisyUI)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id144,496,733
net_rshares0
@weone ·
Thanks for the nice and simple tutorial 😊
properties (22)
authorweone
permlinkre-sagarkothari88-2025727t121139114z
categoryhive-139531
json_metadata{"tags":["hive","development","india","webapp","aioha","reactjs","tutorial","vscode","daisyui","tailwind"],"app":"ecency/4.2.1-vision","format":"markdown+html"}
created2025-07-27 06:41:39
last_update2025-07-27 06:41:39
depth1
children1
last_payout2025-08-03 06:41:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length41
author_reputation9,134,553,950,388
root_title"πŸš€ Integrate AIOHA with Your React App from Scratch (Vite + Tailwind + DaisyUI)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id144,429,827
net_rshares0
@sagarkothari88 ·
You are welcome @weone 

Have a good day
<br/><sub>[via Inbox](https://inbox.the-hive-mobile.app)</sub>
properties (22)
authorsagarkothari88
permlinkre-sagarkothari88-20250729t040021983
categoryhive-139531
json_metadata{"tags":["hive-inbox","ios","android","mobile","app","sagarkothari88","comment","reply"],"app":"Inbox","developer":"sagarkothari88","format":"markdown+html","ts":"2025-07-29T04:00:21.983","hash":"MjAyNS0wNy0yOVQwNDowMDoyMS45ODNfYld4cmIwWjViM1ZZU1V3d1NIZFhUblJoVEhGNE5tbDNjM2hzTUd0MVUxUT0=","version":"1.2.0","route":"Dashboard","os":"Web"}
created2025-07-28 22:30:24
last_update2025-07-28 22:30:24
depth2
children0
last_payout2025-08-04 22:30:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length103
author_reputation582,330,427,817,710
root_title"πŸš€ Integrate AIOHA with Your React App from Scratch (Vite + Tailwind + DaisyUI)"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id144,496,739
net_rshares0