Hero.js
import React from "react";
import withSpecialPower from "./withSpecialPower";

const Hero = ({ name, specialPower }) => {
  return (
    <h2>
      {name} - I can {specialPower}
    </h2>
  );
};

export default withSpecialPower(Hero);