Skip to content

Commit af34e2b

Browse files
committed
fix: imports
1 parent 6fc3e1f commit af34e2b

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

development/paystack.tsx

+4-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import { PayStackProps, PayStackRef } from "./types";
2525
import { styles } from "./style";
2626
import { CLOSE_URL, DEFAULT_ACTIVITY_INDICATOR_COLOR, DEFAULT_AMOUNT, DEFAULT_CURRENCY } from "./utils/constants";
2727

28-
export const Paystack = forwardRef<PayStackRef, PayStackProps>(
28+
const PaystackComponent = forwardRef<PayStackRef, PayStackProps>(
2929
(
3030
{
3131
paystackKey,
@@ -169,4 +169,6 @@ export const Paystack = forwardRef<PayStackRef, PayStackProps>(
169169
</Modal>
170170
);
171171
}
172-
);
172+
);
173+
174+
export default PaystackComponent;

0 commit comments

Comments
 (0)