Files
msgapp/src/app/components/AppFooter.tsx

10 lines
162 B
TypeScript
Raw Normal View History

export function AppFooter() {
return (
<footer style={{ padding: 12, borderTop: "1px solid #eee", marginTop: 24 }}>
© msg App
</footer>
);
}