UNPKG

fullcart

Version:

Add stripe checkout to any website

8 lines (7 loc) 228 B
import { computed } from 'nanostores' import { config } from './config' import { customer } from './customer' export const data = computed([config, customer], (config, customer) => ({ config: config, customer: customer, }))