mirror of
https://github.com/pheralb/svgl.git
synced 2025-02-06 15:17:58 +08:00
13 lines
242 B
JavaScript
13 lines
242 B
JavaScript
|
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;
|