$ npm -v
10.9.2
$ node -v
v22.13.1
$ yarn –version
bash: yarn: command not found
$ sudo npm install –global yarn
$ yarn –version
1.22.22
$ yarn create react-app helloworld
$ cd helloworld
$ ls
node_modules package.json public README.md src yarn.lock
$ yarn start

src/App.js
import logo from './logo.svg';
import './App.css';
function App() {
return (
<div className="App">
<header className="App-header">
<img src={logo} className="App-logo" alt="logo" />
<p>
Edit <code>src/App.js</code> and save to reload.
</p>
<a
className="App-link"
href="https://reactjs.org"
target="_blank"
rel="noopener noreferrer"
>
Learn React
</a>
</header>
</div>
);
}
修正する
import React from 'react';
const App = () => {
return (
<div>
<h1>hello world</h1>
</div>
)
}
export default App;

ちょっと思い出してきました。