Skip to content

Commit

Permalink
Create App.js
Browse files Browse the repository at this point in the history
  • Loading branch information
flemmerz authored Dec 9, 2024
1 parent 893768e commit 6c6bcc3
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions frontend/src/App.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import React from "react";
import Dashboard from "./components/Dashboard";
import DataSubmit from "./components/DataSubmit";

function App() {
return (
<div className="App">
<h1>Mutual Insurance Platform</h1>
<Dashboard />
<DataSubmit />
</div>
);
}

export default App;

0 comments on commit 6c6bcc3

Please sign in to comment.