github
92 of 125 branches covered (0.0%)
Branch coverage included in aggregate %.
176 of 176 new or added lines in 8 files covered. (100.0%)
2610 of 2885 relevant lines covered (90.47%)
4.89 hits per line
|
import { ReactNode } from 'react'; |
1✔ |
|
|
1✔ |
|
import Standard from './standard'; |
1✔ |
|
|
1✔ |
|
type FastPaymentVariants = { |
1✔ |
|
Standard: typeof Standard;
|
1✔ |
|
}; |
1✔ |
|
|
1✔ |
|
export const FastPayment: FastPaymentVariants = ({ |
1✔ |
|
children, |
× |
|
}: { |
× |
|
children: ReactNode;
|
× |
|
}) => { |
× |
|
return children;
|
× |
|
}; |
× |
|
|
1✔ |
|
FastPayment.Standard = Standard; |
1✔ |
|
|
1✔ |
|
export default FastPayment; |
1✔ |