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

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