import { Box, Flex } from '@chakra-ui/react'; import Sidebar from '../Sidebar'; import Orders from '../Orders'; import Masters from '../Masters'; import React from 'react'; const LayoutArm = ({ currentPage, onSelectPage }) => ( {currentPage === 'orders' && } {currentPage === 'masters' && } ); export default LayoutArm;