1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-21 09:38:01 +02:00
joplin/packages/app-desktop/gui/ConfigScreen/controls/SettingHeader.tsx

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;