"use client"; import type { Children } from "@/core/types/common"; import useScreen from "@/core/utils/hooks/useScreen"; import usePattern from "@/app/(visualization)/project/@modals/(.)customization/_utils/hooks/usePattern"; import type { JSX } from "react"; interface SecondarySectionProps extends Children {} /** * The wrapper for display the **right-side** UI components of the **customization** modal window. * Currently, it is available only for the tile patterns view. * @param {Readonly} props * @return {JSX.Element} */ export default function SecondarySection(props: Readonly): JSX.Element { const pattern = usePattern(); const { screenHeight } = useScreen(); /** * ?DEPRECATED: currently there no any UI components which needs this section. */ return (
{props.children}
); }