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

18 lines
275 B
TypeScript
Raw Normal View History

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;