From 33a344feca3de8b25988932fd0039d14c363b5cd Mon Sep 17 00:00:00 2001 From: MikunoNaka Date: Sat, 26 Jun 2021 23:45:43 +0530 Subject: ported and changed order in ItemsDisplay --- src/index.tsx | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/index.tsx (limited to 'src/index.tsx') 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( + + + , + document.getElementById("root") +) -- cgit v1.2.3