17 lines
320 B
TypeScript
17 lines
320 B
TypeScript
"use client"
|
|
|
|
import { SidePanel } from "../../SidePanel"
|
|
import SummaryUI from "./UI"
|
|
|
|
type Props = {
|
|
isUserLoggedIn: boolean
|
|
}
|
|
|
|
export default function DesktopSummary({ isUserLoggedIn }: Props) {
|
|
return (
|
|
<SidePanel variant="summary">
|
|
<SummaryUI isUserLoggedIn={isUserLoggedIn} />
|
|
</SidePanel>
|
|
)
|
|
}
|