Reactiflux

R

Reactiflux

Join the community to ask questions about Reactiflux and get answers from other members.

Join Server
Ppillok2/25/2024

✅ – pillok – 04-32 Feb 25

is it a bad practice to use tailwind and material ui in one project
Solution:
yes. you should avoid using more than one css library/framework at a time. that said if you really need it you can manually solve many compatility issues by using the @apply feature on your tailwind.config.js, but i'd advice against it, since it's not the intended
Message Not Public
Sign In & Join Server To View
Vvcarl2/20/2024

vcarl – 16-19 Feb 20

Do y'all know of a great resource that goes into PWAs beyond a surface level? not just like "here's how to write a manifest" but something talking about the high-level architecture, the vision for the standards, overall technical capabilities
Ddmikester12/19/2024

dmikester1 – 18-25 Feb 19

Not sure if this belongs here or React. But I have a react web app with form inputs. I have an onBlur call on several of the inputs to perform a bunch of calculations and update values on the page. The thing is, when I use "tab" to blur the field, it is focusing on the next field. I don't want it to focus on anything. Simply blur/lose focus altogether.
NNguyen2/1/2024

hoangvu12 – 15-41 Feb 1

I want to make a script using puppeteer, go to a CF website, solve the captcha manually then get the cookies. The problem is I can't seem to solve the captcha, whenever I click on "Verify", it show the loading spinner for 1-2 seconds then refresh the page. Here is the code: ```ts import puppeteer from "puppeteer-extra";...