import React, { forwardRef } from 'react' import type { HTMLAttributes, DetailedHTMLProps } from 'react' export interface NewsletterContentProps extends DetailedHTMLProps, HTMLDivElement> { /** * ID to find this component in testing tools (e.g.: Cypress, Testing Library, and Jest). */ testId?: string } const NewsletterContent = forwardRef( function NewsletterContent( { children, testId = 'fs-newsletter-content', ...otherProps }, ref ) { return (
{children}
) } ) export default NewsletterContent