Как можно сократить код?

как можно сократить эти 3 строчки?)
GlobalStyled.title.fontSize = "58px";
GlobalStyled.title.fontWeight = "800px"
GlobalStyled.title.lineHeight = "80px"
---------------------------------------------------
export const _GlobalStyled = {
    title: {
      fontStyle: "normal",
      fontWeight: "700",
      fontSize: "48px",
      lineHeight: "57px",
      color: "#252B42"
    },
    text: {
      fontStyle: "normal",
      fontWeight: "500",
      fontSize: "14px",
      lineHeight: "20px",
      color: "#737373"
    }
  }


const HeaderContent = () => {
  _GlobalStyled.title.fontSize = "58px";
  _GlobalStyled.title.fontWeight = "800px";
  _GlobalStyled.title.lineHeight = "80px";

  _GlobalStyled.text.fontSize = "20px";
  return (
    <div style={styles.wrapper}>
      <h1 style={_GlobalStyled.title}>Finance and Consultancy Solution</h1>
      <p style={_GlobalStyled.text}>
        We know how large objects will act, but things on a small scale.
      </p>
      <div>
        <button />
        <button />
      </div>
    </div>
  );
};
  • Вопрос задан
  • 76 просмотров
Пригласить эксперта
Ваш ответ на вопрос

Войдите, чтобы написать ответ

Похожие вопросы