13 lines
242 B
JavaScript
Raw Normal View History

2022-03-03 14:48:37 +00:00
import React from "react";
import { Box } from "@chakra-ui/react";
const Index = ({ children }) => {
return (
<Box as="main" px={{ base: 3, md: 16 }} pl={{ base: 3, md: 16 }}>
{children}
</Box>
);
};
export default Index;