import { Stack, Typography } from '@mui/material'; type IFooterProps = { name: string; version: string; copy?: string; }; function Footer(props: IFooterProps) { const { name, version, copy = '© Applica Software Guru for' } = props; return ( {name} - {version} ); } export { Footer };