Skip to content

Commit

Permalink
Initial fees and invoice
Browse files Browse the repository at this point in the history
  • Loading branch information
223880 committed Jul 29, 2024
1 parent e41625a commit 1771b68
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/navigation/Fees.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import React, { useEffect } from'react';
import { NavigationContainer } from '@react-navigation/native';


const App = () => {
return (
<NavigationContainer>
<Stack.Navigator>
<Stack.Screen name="Fees" component={Fees} />
</Stack.Navigator>
</NavigationContainer>
);
};
14 changes: 14 additions & 0 deletions src/navigation/Invoice.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import { Invoice } from "../models/Invoice";
import React from "react";

export interface InvoiceProps {
invoice: Invoice;
}

export const InvoiceComponent: React.FC<InvoiceProps> = ({ invoice }) => {
return (
<div>
InvoiceComponent: {invoice.id}
</div>
);
};

0 comments on commit 1771b68

Please sign in to comment.