14 lines
288 B
TypeScript
14 lines
288 B
TypeScript
import React from 'react';
|
|
import './Footer.css';
|
|
|
|
export function Footer() {
|
|
return (
|
|
<footer className="footer">
|
|
<div className="footer-content">
|
|
<div className="copyright">
|
|
Copyright © 2025 AutoAgent Team
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
);
|
|
}
|