import React, { PropsWithChildren } from 'react' import './index.scss' // Props interface Props {} const ExtraContainer = ({ children, ...props }: PropsWithChildren) => { return
{children}
} export default ExtraContainer