9 lines
164 B
TypeScript
9 lines
164 B
TypeScript
import Main from './components/main'
|
|
import ContextShop from '@/context/ContextShop'
|
|
|
|
export default () => {
|
|
return <ContextShop>
|
|
<Main />
|
|
</ContextShop>
|
|
}
|