From 0d90508977837bec25f038fe5380e6fb3bc82745 Mon Sep 17 00:00:00 2001 From: MikunoNaka Date: Fri, 25 Jun 2021 18:24:41 +0530 Subject: converted all the smaller files to tsx --- src/components/App.tsx | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 src/components/App.tsx (limited to 'src/components/App.tsx') diff --git a/src/components/App.tsx b/src/components/App.tsx new file mode 100644 index 0000000..f7e0348 --- /dev/null +++ b/src/components/App.tsx @@ -0,0 +1,31 @@ +/* + * 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 { BrowserRouter, Route, Switch } from "react-router-dom"; + +import Header from "./Header/Header"; +import HomePage from "./Pages/HomePage"; +import BillingPage from "./Pages/BillingPage"; + +const App: React.FC = () => ( + <> + +
+
+ + + +
404
}/> +
+
+ + +); + +export default App; -- cgit v1.2.3