rstarter-supporthq
Version:
9 lines (8 loc) • 324 B
JavaScript
import React from 'react';
const Header=(props)=>{
return <div style={{margin:"2rem 0 1rem 0",padding:".5rem "}||props.style} className={props.className}>
<h4 style={{lineHeight:"17px"}}>{props.Title}</h4>
<p style={{color: "dimgray"}}>{props.Description}</p>
</div>
}
export default Header;