diff options
Diffstat (limited to 'src/index.tsx')
-rw-r--r-- | src/index.tsx | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/index.tsx b/src/index.tsx new file mode 100644 index 0000000..563cfb7 --- /dev/null +++ b/src/index.tsx @@ -0,0 +1,8 @@ +import React from 'react'; +import ReactDOM from 'react-dom'; + +ReactDOM.render( + <h1> Hello, world! </h1>, + document.getElementById('root') +); + |