When I use console.log to test my app, it logs the data two times here an screenshot and the code
function App() {
const arr = ["one", "two", "three"];
console.log("test");
console.log(arr);
return (
<p>test</p>
);
}
export default App;
as you can see I use console.log once for each variable and its log it twice the same thing with error
npm version is 8.19.2
and node v16.16.0
I use npx create-react-app
