import type { PropsWithChildren } from 'react' import { Container } from '../shared' const DeveloperLayout = ({ children }: PropsWithChildren) => { return (
{children}
) } export default DeveloperLayout