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…
Reference in new issue