-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.tsx
50 lines (49 loc) · 1.17 KB
/
index.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import {
Brand,
Country,
DeliveryMethod,
Invoice,
OfferCatalog,
Order,
PaymentMethod,
Product,
} from '@opennetwork/environments-schema-org-logistics';
import { createFragment, h } from "@opennetwork/vnode";
export const SiteContents = (
<>
<OfferCatalog>
<Product
name="This is my name 1"
sku="SKU 123"
>
<Brand name="Some brand" />
</Product>
<Product
name="This is my name 2"
sku="SKU 124"
>
<Brand name="Some brand" />
</Product>
<Product
name="This is my name 3"
sku="SKU 125"
>
<Brand name="Some other brand" />
</Product>
</OfferCatalog>
<Order
identifier="1"
orderDate={new Date()}
>
<Invoice identifier="2313132">
<PaymentMethod identifier="123243234" />
</Invoice>
<Product
sku="SKU 125"
/>
<DeliveryMethod identifier="123122222">
<Country name="New Zealand" />
</DeliveryMethod>
</Order>
</>
);