Last active
October 24, 2020 01:30
-
-
Save pavinduLakshan/65002481c4e3de89ee6347b640b5b029 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
import React from 'react'; | |
import './App.css'; | |
import PaymentModal from './PaymentModal/PaymentModal'; | |
function App() { | |
return ( | |
<div className="App"> | |
<PaymentModal | |
// Use a unique value for the orderId | |
orderId={45896588} | |
name="Just For You Mom Ribbon Cake" | |
amount="4500" | |
/> | |
</div> | |
); | |
} | |
export default App; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment