github
92 of 125 branches covered (0.0%)
Branch coverage included in aggregate %.
177 of 177 new or added lines in 9 files covered. (100.0%)
2606 of 2881 relevant lines covered (90.45%)
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✔ |