diff options
Diffstat (limited to 'examples/react/src/App.jsx')
-rw-r--r-- | examples/react/src/App.jsx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/react/src/App.jsx b/examples/react/src/App.jsx index d20dd12fe..a3e9150b9 100644 --- a/examples/react/src/App.jsx +++ b/examples/react/src/App.jsx @@ -1,10 +1,10 @@ -import logo from "./logo.svg"; import "./App.css"; +import logo from "./logo.svg"; function App() { return ( - <div className="App"> - <header className="App-header"> + <div className="App" role="main"> + <article className="App-article"> <img src={logo} className="App-logo" alt="logo" /> <h3>Welcome to React!</h3> <a @@ -15,7 +15,7 @@ function App() { > Learn React </a> - </header> + </article> </div> ); } |