-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
223880
committed
Jul 29, 2024
1 parent
e41625a
commit 1771b68
Showing
2 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> | ||
); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> | ||
); | ||
}; |