commerce/pages/ui.tsx

12 lines
256 B
TypeScript
Raw Normal View History

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