mirror of
https://github.com/vercel/commerce.git
synced 2025-05-18 07:26:59 +00:00
12 lines
314 B
TypeScript
12 lines
314 B
TypeScript
import { useUI } from '@components/ui/context'
|
|
import SidebarLayout from '@components/common/SidebarLayout'
|
|
|
|
export default function AuthMenuSidebarView() {
|
|
const { closeSidebar } = useUI()
|
|
return (
|
|
<SidebarLayout handleClose={() => closeSidebar()}>
|
|
THIS IS A SIDEBAR VIEW
|
|
</SidebarLayout>
|
|
)
|
|
}
|