javascript - React: Dynamic styles in component not updating - Stack Overflow

PHOTO EMBED

Mon Sep 07 2020 13:36:50 GMT+0000 (Coordinated Universal Time)

Saved by @hbenfred #javascript

// Cell.js
import React, { Component } from 'react';

export default class Cell extends Component {

  render() {
    const cellSize = {
      width: this.props.size,
      height: this.props.size
    }

    return (
      <div style={cellSize}>
      </div>
    );
  }
}
content_copyCOPY

https://stackoverflow.com/questions/61547522/react-dynamic-styles-in-component-not-updating