import React, { FC, ReactNode } from "react"; import styled from "styled-components"; type Props = { title: ReactNode; }; const Title = styled.div` font-weight: bold; margin-bottom: 0.5rem; `; const Menu = styled.ul` padding-left: 1.1rem; `; const FooterSection: FC = ({ title, children }) => { return (
{title} {React.Children.map(children, (child, index) => (
  • {child}
  • ))}
    ); }; export default FooterSection;