import React from "react"; import { Box } from "@chakra-ui/react"; const Index = ({ children }) => { return ( {children} ); }; export default Index;