Files
SCM-Manager/scm-ui/ui-components/src/layout/Title.js

19 lines
283 B
JavaScript
Raw Normal View History

// @flow
import React from "react";
type Props = {
title?: string
};
class Title extends React.Component<Props> {
render() {
const { title } = this.props;
if (title) {
return <h1 className="title">{title}</h1>;
}
return null;
}
}
export default Title;