Hey there! Awesome thing right here thanks!
Only one suggestion, what you think ? Maybe there can be showDirectorInfo or something like that boolean prop to allow control visibility of Director more easily ?
export default class extends React.PureComponent {
constructor(props) {
super(props);
props.showDirectorInfo && showDirector();
}
render() {
return this.props.children;
}
}
Hey there! Awesome thing right here thanks!
Only one suggestion, what you think ? Maybe there can be
showDirectorInfoor something like that boolean prop to allow control visibility ofDirectormore easily ?