import { Box } from "@saleor/macaw-ui/next"; import React from "react"; interface DetailPageLayoutRightSidebarProps { children: React.ReactNode; } export const RightSidebar: React.FC = ({ children, }) => ( {children} );