aboutsummaryrefslogtreecommitdiffstats
path: root/packages/renderer/src/index.tsx
blob: 21ad1525377d733c7c905c8483f18528a83ccae8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import React from 'react';
import { render } from 'react-dom';

const app = (
  <React.StrictMode>
    <h1>Hello Sophie!</h1>
  </React.StrictMode>
);

render(app, document.getElementById('app'));