aboutsummaryrefslogtreecommitdiff
path: root/src/index.tsx
diff options
context:
space:
mode:
authoreug-vs <eug-vs@keemail.me>2020-06-06 18:46:13 +0300
committereug-vs <eug-vs@keemail.me>2020-06-06 18:53:43 +0300
commitbdf533b43a6b9fab5420c86716c9611ce857d761 (patch)
treef0bf7f19859b646a29a173452e0fc31633e6edc7 /src/index.tsx
downloadwhich-ui-bdf533b43a6b9fab5420c86716c9611ce857d761.tar.gz
feat: initial ts react-app
Diffstat (limited to 'src/index.tsx')
-rw-r--r--src/index.tsx8
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')
+);
+