Search posts, tags, users, and pages
Dhananjay Singh
Software Developer
import React, { useState } from "react"; import "./styles.css"; export default function App() { const [mynum, setMynum] = useState(""); return ( <div className="App" style={ mynum % 2 === 0 ? { backgroundColor: "...
No responses yet.