Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

215
Views
How to create a button in React which changes the font-weight of the new input to bold?

import React, { useState } from "react";

const App = () => {
  const [isBold, setBold] = useState(false);

  const handleClick = () => {
    setBold((prevValue) => {
      return !prevValue;
    });
  };

  return (
    <div>
      <input
        style={{ fontWeight: isBold ? "bold" : "normal" }}
        name="content"
      />
      <button onClick={handleClick}>Bold</button>
    </div>
  );
};
export default App;

This changes the style of the whole content of input but rather I want to just Change the font-weight of the new input. Can anyone give me full code for this or a brief explanation on how to create such a button?

about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!