aboutsummaryrefslogtreecommitdiff
path: root/src/index.tsx
diff options
context:
space:
mode:
authorMikunoNaka <bokuwakanojogahoshii@yahoo.com>2021-06-26 23:45:43 +0530
committerMikunoNaka <bokuwakanojogahoshii@yahoo.com>2021-06-26 23:45:43 +0530
commit33a344feca3de8b25988932fd0039d14c363b5cd (patch)
tree5ca767043822b462fa5697492730380e3bc0956e /src/index.tsx
parente54214c8ecdcf264a0f055ae24afe3299c0c7697 (diff)
ported and changed order in ItemsDisplay
Diffstat (limited to 'src/index.tsx')
-rw-r--r--src/index.tsx20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/index.tsx b/src/index.tsx
new file mode 100644
index 0000000..682b794
--- /dev/null
+++ b/src/index.tsx
@@ -0,0 +1,20 @@
+/*
+ * OpenBills - Self hosted browser app to generate and keep track of simple invoices
+ * Version - 0
+ * Licensed under the MIT license - https://opensource.org/licenses/MIT
+ *
+ * Copyright (c) 2021 Vidhu Kant Sharma
+ */
+
+// import React from 'react';
+import React from "react";
+import ReactDOM from "react-dom";
+import "./styles/global.scss"
+import App from "./components/App";
+
+ReactDOM.render(
+ <React.StrictMode>
+ <App />
+ </React.StrictMode>,
+ document.getElementById("root")
+)