File size: 285 Bytes
f5071ca
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { Box } from '@chakra-ui/react';
import React from 'react';
import { Outlet } from 'react-router-dom';

const Right = () => {
   return (
      <Box flex='1' ms={{ base: '0 !important', md: '.5rem !important' }}>
         <Outlet />
      </Box>
   );
};

export default Right;