/* global React */
function ProcessStep({ n, title, body, duration, bonus = false, oldPrice, newPrice, badge }) {
if (bonus) {
return (
{badge &&
{badge}
}
{n}
{title}
{body}
{oldPrice && {oldPrice}}
{newPrice}
gratis
{duration &&
{duration}
}
);
}
return (
{n}
{title}
{body}
{duration}
);
}
function ProcessGrid({ heading, italic, desc, steps = [] }) {
return (
);
}
window.ProcessStep = ProcessStep;
window.ProcessGrid = ProcessGrid;