From 4b9ce789f798382af26551a36f7d15808d59c495 Mon Sep 17 00:00:00 2001
From: Maximus <ten.maksim97@gmail.com>
Date: Fri, 19 Aug 2022 19:49:34 +0300
Subject: [PATCH] return of App.tsx

---
 src/App.tsx | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)
 create mode 100644 src/App.tsx

diff --git a/src/App.tsx b/src/App.tsx
new file mode 100644
index 0000000..69002fa
--- /dev/null
+++ b/src/App.tsx
@@ -0,0 +1,16 @@
+/* -------------------------------------------------------------------------- */
+/*                                  Libraries                                 */
+/* -------------------------------------------------------------------------- */
+import React from "react";
+/* -------------------------------------------------------------------------- */
+/*                         Application root component                         */
+/* -------------------------------------------------------------------------- */
+/**
+ * Application root component
+ * @return {JSX.Element}
+ */
+function App() {
+  return <div>Hello world!</div>;
+}
+
+export default App;