mirror of
https://github.com/strapi/strapi.git
synced 2025-08-09 01:07:27 +00:00
24 lines
562 B
JavaScript
24 lines
562 B
JavaScript
![]() |
/**
|
||
|
*
|
||
|
* RightContentTitle
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
import React from 'react';
|
||
|
|
||
|
import styles from './styles.css';
|
||
|
|
||
|
class RightContentTitle extends React.Component { // eslint-disable-line react/prefer-stateless-function
|
||
|
render() {
|
||
|
return (
|
||
|
<div className={styles.rightContentTitle}>
|
||
|
<h2 className={styles.rightContentTitleName}>General</h2>
|
||
|
<p className={styles.rightContentTitleDescription}>Configure your general settings</p>
|
||
|
<hr className={styles.rigthContentTitleSeparator}></hr>
|
||
|
</div>
|
||
|
);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default RightContentTitle;
|