import React from 'react'; function SectionWrapper({ title, children }) { return (
{title}
DURATION
{ children }
); } export default SectionWrapper;