4
0
forked from crowetic/commerce
commerce/pages/ui.tsx

15 lines
401 B
TypeScript
Raw Normal View History

2020-10-15 11:10:07 -03:00
import { GetStaticPropsContext, InferGetStaticPropsType } from 'next'
import { useRouter } from 'next/router'
import Link from 'next/link'
import { Layout } from '@components/core'
import { Container, Grid, Skeleton } from '@components/ui'
export default function Search() {
return (
<Container>
<Skeleton className="w-64 h-12 rounded-md" />
</Container>
)
}
Search.Layout = Layout