skip to Main Content

Prop not used properly – Reactjs

I´m getting the error that setAnimals is not a function. I controlled every prop but i can´t find the mistake Form code: export default function AddAnimalForm({setAnimals, animals}) { const [submitMessage, setSubmitMessage] = useState(false); const [showDetails, setShowDetails] = useState(false); const {…

VIEW QUESTION

Tailwind background image not showing – CSS

The background image is not showing. I also tried "bg-[url('/image/example.jpeg')" tailwind.config.js theme: { extend: { colors: { darkBlue: "#0D1A32", }, backgroundImage: { "hero-image": "url('/app/images/lentcm93p_1.jpg')", }, }, }, plugins: [], }; Page.js export default function Home() { return ( <> <div…

VIEW QUESTION
Back To Top
Search