openreplay/frontend/app/components/Dashboard/Widgets/common/Title.js
2021-05-01 15:12:01 +05:30

12 lines
220 B
JavaScript

import styles from './title.css';
const Title = ({ title, sub }) => (
<div className={ styles.title } >
<h4>{ title }</h4>
<span>{ sub }</span>
</div>
);
Title.displayName = 'Title';
export default Title;