SectionText.jsx 200 B

1234567891011
  1. import React from 'react';
  2. const SectionText = ({className, innerText}) => {
  3. return (
  4. <p className={className}>
  5. {innerText}
  6. </p>
  7. );
  8. };
  9. export default SectionText;