aboutsummaryrefslogtreecommitdiff
path: root/src/components/App.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/App.js')
-rw-r--r--src/components/App.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/components/App.js b/src/components/App.js
new file mode 100644
index 0000000..666667b
--- /dev/null
+++ b/src/components/App.js
@@ -0,0 +1,10 @@
+import React from "react";
+
+const App = () => {
+ const txt = "sldjflksjdfljsd";
+ return (
+ <p>{txt}</p>
+ )
+}
+
+export default App