As you can see I am trying to align the div to the center using "margin: 'auto'". But it doesn't seem to be working.
import React, { Component } from 'react';
import './CenterBlock.css';
class CenterBlock extends Component {
state = {
styling: {
margin: 'auto'
}
}
render() {
return (
<div className="center__block__container" style={this.state.styling}>
<div className="block">
<h1>Generate Password</h1>
</div>
</div>
);
}
}
export default CenterBlock;