summaryrefslogtreecommitdiff
path: root/src/Root.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/Root.js')
-rw-r--r--src/Root.js9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/Root.js b/src/Root.js
new file mode 100644
index 0000000..95fb168
--- /dev/null
+++ b/src/Root.js
@@ -0,0 +1,9 @@
+import React from 'react';
+
+const Root = () => (
+ <main>
+ <p>Hello, world!</p>
+ </main>
+);
+
+export default Root;