aboutsummaryrefslogtreecommitdiff
path: root/src/index.tsx
blob: 563cfb787851f15aed28c4f589091b42a919fc85 (plain)
1
2
3
4
5
6
7
8
import React from 'react';
import ReactDOM from 'react-dom';

ReactDOM.render(
  <h1> Hello, world! </h1>,
  document.getElementById('root')
);