import React, { FC, HTMLAttributes } from 'react'; import classname from 'classnames'; import { Col, Container, Row } from 'reactstrap'; export interface HeroBodyProps extends HTMLAttributes { /** Eventuali classi aggiuntive */ className?: string; testId?: string; } export const HeroBody: FC = ({ children, className, testId }) => { const classes = classname('it-hero-text-wrapper', 'bg-dark', className); return (
{children}
); };