import React from 'react' import type { ReactNode } from 'react' interface Iprops { children?: ReactNode } const AppFooter = (props: Iprops) => { return
AppFooter
} export default AppFooter