UNPKG
fullcart
Version:
latest (0.0.4)
0.0.4
0.0.3
0.0.2
Add stripe checkout to any website
fullcart.dev
fullcart
/
src
/
stores
/
data.ts
8 lines
(7 loc)
•
228 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
import
{ computed }
from
'nanostores'
import
{ config }
from
'./config'
import
{ customer }
from
'./customer'
export
const
data =
computed
([config, customer],
(
config, customer
) =>
({
config
: config,
customer
: customer, }))