Skip to content
This repository has been archived by the owner on Jun 8, 2024. It is now read-only.

Commit

Permalink
Add App component and related components
Browse files Browse the repository at this point in the history
  • Loading branch information
maxmielchen committed Feb 11, 2024
1 parent 16513f8 commit 0742533
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/App.js → src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import React from "react";

import { useEffect, useState } from "react";
import 'bootstrap/dist/css/bootstrap.min.css';
import { Button, ButtonGroup, Container, Navbar, NavbarText} from "react-bootstrap";
Expand Down Expand Up @@ -96,7 +98,7 @@ function Einkauf() {

<hr />
<h4>4. Zahlung</h4>
<ZahlungAusgehend rechnungsbetrag={rechnungsbetrag} bezugskosten={bezugskosten} />
<ZahlungAusgehend rechnungsbetrag={rechnungsbetrag} />
</Container>
);
}
Expand Down

0 comments on commit 0742533

Please sign in to comment.