format react with linter

This commit is contained in:
Jesse de Wit
2023-11-10 21:26:19 +01:00
committed by ok300
parent 48fe09ea98
commit 707a11c3fa
12 changed files with 207 additions and 207 deletions

View File

@@ -1,10 +1,10 @@
import { receivePayment } from "@breeztech/react-native-breez-sdk"
import { receivePayment } from '@breeztech/react-native-breez-sdk'
const exampleReceiveLightningPayment = async () => {
// ANCHOR: receive-payment
const invoice = await receivePayment({
amountMsat: 3000000,
description: "Invoice for 3000 sats"
})
// ANCHOR_END: receive-payment
// ANCHOR: receive-payment
const invoice = await receivePayment({
amountMsat: 3000000,
description: 'Invoice for 3000 sats'
})
// ANCHOR_END: receive-payment
}