mirror of
https://github.com/strapi/strapi.git
synced 2025-08-11 02:07:51 +00:00
23 lines
503 B
JavaScript
23 lines
503 B
JavaScript
![]() |
/**
|
||
|
*
|
||
|
* PluginHeaderTitle
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
import React from 'react';
|
||
|
|
||
|
import styles from './styles.css';
|
||
|
|
||
|
class PluginHeaderTitle extends React.Component { // eslint-disable-line react/prefer-stateless-function
|
||
|
render() {
|
||
|
return (
|
||
|
<div className={styles.pluginHeaderTitle}>
|
||
|
<h1 className={styles.pluginHeaderTitleName}>Settings Manager</h1>
|
||
|
<p className={styles.pluginHeaderTitleDescription}>Easily update your settings</p>
|
||
|
</div>
|
||
|
);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default PluginHeaderTitle;
|