import { Box } from "@saleor/macaw-ui/next"; import clsx from "clsx"; import React from "react"; import { borderHeight, savebarHeight } from "./consts"; interface RightSidebarProps { children: React.ReactNode; className?: string; } export const RightSidebar: React.FC = ({ children, className, }) => ( {children} );