Adding customCheckout

This commit is contained in:
okbel
2021-02-26 15:52:09 -03:00
parent 42be44c7ee
commit 3acca7cc17
6 changed files with 80 additions and 4 deletions

View File

@@ -59,7 +59,12 @@ type Action =
value: string
}
type MODAL_VIEWS = 'SIGNUP_VIEW' | 'LOGIN_VIEW' | 'FORGOT_VIEW'
type MODAL_VIEWS =
| 'SIGNUP_VIEW'
| 'LOGIN_VIEW'
| 'FORGOT_VIEW'
| 'NEW_SHIPPING_ADDRESS'
| 'NEW_PAYMENT_METHOD'
type ToastText = string
export const UIContext = React.createContext<State | any>(initialState)