import ChildCom1 from "./components/ChildCom1"; import ChildCom2 from "./components/ChildCom2"; // import MouseMove from "./components/MouseMove"; import withMouseMove from "./HOC/withMouseMove" const NewChildCom1 = withMouseMove(ChildCom1); const NewChildCom2 = withMouseMove(ChildCom2); function App() { return (