this is my code- import './App.css' import product from "./product.jsx"; function App() { return ( <> <product/> <button>hello</button> </> ); } export default App; note:- import file doesn't get import in a component
this is my code-
import './App.css'
import product from "./product.jsx";
function App() {
return (
<>
hello
</>
);
}
export default App;
note:- import file doesn't get import in a component