openreplay/frontend/app/components/Dashboard/Widgets/common/Title.js
Андрей Бабушкин b822b1c067 applied eslint
2025-02-26 20:31:01 +01:00

14 lines
266 B
JavaScript

import styles from './title.module.css';
function Title({ title, sub }) {
return (
<div className={styles.title}>
<h4 className="cap-first">{ title }</h4>
<span>{ sub }</span>
</div>
);
}
Title.displayName = 'Title';
export default Title;