Files
TechRadarAJR/js/components/SetTitle.js
2017-03-21 21:37:24 +01:00

17 lines
285 B
JavaScript

import React from 'react';
class SetTitle extends React.Component {
constructor(props) {
super(props);
if (typeof props.onSetTitle === 'function' && props.title) {
props.onSetTitle(props.title);
}
}
render() {
return null;
}
}
export default SetTitle;