Files
piratepoet/assets/js/src/settings/components/label.tsx
Amine Ben hammou 6026327b1f Add Manage subscription page
[MAILPOET-2677]
2020-03-25 20:44:26 +01:00

15 lines
373 B
TypeScript

import React, { ReactNode } from 'react';
type Props = {
title: string
description: ReactNode
htmlFor: string
}
export default ({ title, description, htmlFor }: Props) => (
<div className="mailpoet-settings-label">
<label className="mailpoet-settings-label-title" htmlFor={htmlFor}>{title}</label>
<p className="description">{description}</p>
</div>
);