aboutsummaryrefslogtreecommitdiffstats
path: root/spring-front/src/index.js
blob: 81d48092ad41bbcc39f66eeff689cace2aa20d07 (plain) (blame)
1
2
3
4
5
6
7
8
9
import React from "react";

const page = (
  <div>
    <h1>Hello, everyone!</h1>
    <p>A paragraph</p>
  </div>
);
React.ReactDOM.render(page, document.getElementById("root"));