import React from "react"; import { Box, Grid, useColorModeValue } from "@chakra-ui/react"; function WardrobePageLayout({ preview, controls, itemsAndSearch }) { const itemsAndSearchBackground = useColorModeValue("white", "gray.900"); return ( {preview} {controls} {itemsAndSearch} ); } export default WardrobePageLayout;