UNPKG

gatsby-theme-zh

Version:
10 lines (9 loc) 224 B
import React from 'react'; interface ProductsProps { show: boolean; rootDomain: string; language?: 'zh' | 'en'; className?: string; } declare const Products: React.FC<ProductsProps>; export default Products;