import { Center } from '@chakra-ui/react' import React from 'react' interface IServiceLayoutProps { children: React.ReactNode } const ServiceLayout: React.FunctionComponent = (props) => { const { children } = props return (
{children}
) } export default ServiceLayout