Skip to content

Instantly share code, notes, and snippets.

@pavinduLakshan
Last active October 24, 2020 01:30
Show Gist options
  • Save pavinduLakshan/65002481c4e3de89ee6347b640b5b029 to your computer and use it in GitHub Desktop.
Save pavinduLakshan/65002481c4e3de89ee6347b640b5b029 to your computer and use it in GitHub Desktop.
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