import { BackIconBtn } from 'components' const PageContainer = props => { //? Props const { title, children } = props //? Render(s) return ( <>

{title}

{children} ) } export default PageContainer