mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-18 09:35:20 +02:00
16 lines
242 B
TypeScript
16 lines
242 B
TypeScript
|
import * as React from 'react';
|
||
|
|
||
|
interface Props {
|
||
|
text: string;
|
||
|
}
|
||
|
|
||
|
const SettingHeader: React.FC<Props> = props => {
|
||
|
return (
|
||
|
<div className='setting-header'>
|
||
|
<label>{props.text}</label>
|
||
|
</div>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default SettingHeader;
|