aboutsummaryrefslogtreecommitdiff
path: root/examples/react/src/App.jsx
blob: a3e9150b92a55958c328b718f74c99426ba06f88 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import "./App.css";
import logo from "./logo.svg";

function App() {
  return (
    <div className="App" role="main">
      <article className="App-article">
        <img src={logo} className="App-logo" alt="logo" />
        <h3>Welcome to React!</h3>
        <a
          className="App-link"
          href="https://reactjs.org"
          target="_blank"
          rel="noopener noreferrer"
        >
          Learn React
        </a>
      </article>
    </div>
  );
}

export default App;