commerce/pages/index.tsx
lytrankieio123 d3c94cfb79 🔧 config: src folders structure
:%s
2021-08-20 09:29:58 +07:00

16 lines
424 B
XML

import { ButtonCommon, Layout } from 'src/components/common'
export default function Home() {
return (
<>
<div>This is home page</div>
<ButtonCommon />
<p>Go to <code>pages/index.tsx</code> to get your hand dirty!</p>
<p>Go to <code>src/components</code> to make your awesome component!</p>
<p>Go to <code>src/styles</code> to find global styles!</p>
</>
)
}
Home.Layout = Layout