-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
17 lines (16 loc) · 1.08 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
export { default as registerBlockProducts } from "./src/products"
export { default as registerBlockBuyButton } from "./src/buy-button"
export { default as registerBlockTitle } from "./src/title"
export { default as registerBlockPricing } from "./src/pricing"
export { default as registerBlockDescription } from "./src/description"
export { default as registerBlockGallery } from "./src/gallery"
export { default as registerBlockCollections } from "./src/collections"
export { default as registerBlockCollectionTitle } from "./src/collection-title"
export { default as registerBlockCollectionDescription } from "./src/collection-description"
export { default as registerBlockCollectionImage } from "./src/collection-image"
export { default as registerBlockStorefront } from "./src/storefront"
export { default as registerBlockCartIcon } from "./src/cart-icon"
export { default as registerBlockSearch } from "./src/search"
export { default as registerBlockReviews } from "./src/reviews"
export { default as Icon } from "./src/_icons"
export { useBlockState, useBlockDispatch } from "./src/_state/hooks"