1
0
mirror of https://github.com/vercel/commerce.git synced 2025-05-15 05:56:59 +00:00
2020-10-17 09:07:02 -03:00

12 lines
256 B
TypeScript

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