import React from "react"; import PropTypes from "prop-types"; import { AboutSectionContainer, AboutSectionImage, AboutSectionText, AboutSectionTextContainer, AboutSectionTitle, CheckButton, } from "./AboutSection.styled"; const AboutSection = (props) => { console.log(props); return ( {props.title} {props.text} {props.reverse && } ); }; AboutSection.propTypes = { children: PropTypes.node, title: PropTypes.string, text: PropTypes.string, image: PropTypes.string, reverse: PropTypes.bool, }; export default AboutSection;