import './App.css' import product from "./product.jsx"; //this file cant import. this line is not executing function App() { return (<> <product/> <button>hello</button> </>); } export default App;
import './App.css'
import product from "./product.jsx"; //this file cant import. this line is not executing
function App() {
return (<>
hello
</>);
}
export default App;