feat: Create shop page with filter and product slug pages

feature/vendors
Näser 3 years ago
parent 851973d740
commit adceb78cf7

@ -0,0 +1,7 @@
/*
* Replace this with your own classes
*
* e.g.
* .container {
* }
*/

@ -0,0 +1,14 @@
import styles from './index.module.scss';
/* eslint-disable-next-line */
export interface ShopProps {}
export function Shop(props: ShopProps) {
return (
<div className={styles['container']}>
<h1>Welcome to Shop!</h1>
</div>
);
}
export default Shop;
Loading…
Cancel
Save